
{ OSDPFST - Type declarations for paging statistics record. }
{
{ NOTE: If TYPE declarations or record fields are added/changed/deleted, please
{   make the appropriate changes in the corresponding display procedures in the
{   module(s) for the System Core Debugger: SYM$DEBUG, SYM$DEBUG1
{

  TYPE
    ost$paging_statistics = record
*IF NOT $true(osv$unix)
      page_in_count: 0 .. 0ffffffff(16),
      pages_reclaimed_from_queue: 0 .. 0ffffffff(16),
      new_pages_assigned: 0 .. 0ffffffff(16),
      pages_from_server:  0 .. 0ffffffff(16),
      page_fault_count:   0 .. 0ffffffffffff(16),
*ELSE
      page_in_count: 0 .. 7fffffff(16),
      pages_reclaimed_from_queue: 0 .. 7fffffff(16),
      new_pages_assigned: 0 .. 7fffffff(16),
      pages_from_server:  0 .. 7fffffff(16),
      page_fault_count:   0 .. 7fffffff(16),
*IFEND
      working_set_max_used: 0 .. 0ffff(16),
      incremental_max_ws: 0 .. 0ffff(16),
    recend;
