
{ Deck mmt$page_streaming_statistics defines stats for page streaming process within the page fault process.
{ When displayed or placed in a statistic, the number of counters is increased by one by creating an
{ additional value "prestream mode initiated" which equals the sum of initiated + prestream_only.

  TYPE
    mmt$page_streaming_statistics =  RECORD
        initiated: integer,
        prestream_only: integer,
        terminated: integer,
        pages_prestream: integer,
        pages_streaming: integer,
        task_slow: integer,
        page_faults_tu: integer,
        pages_freed_behind: integer,
        random_faults: integer,
      RECEND;

{ This constant is the number of integers in the record.  It is used by clm$display_system_data.
{ and in mmt$paging_statistics.

  CONST   mmc$page_streaming_counters = 9;

