WatchStats.mesa
Russ Atkinson, November 15, 1983 2:00 pm
WatchStats: CEDAR DEFINITIONS = BEGIN
WatchStatsRecord: TYPE = RECORD [
idleCount: INT,   -- the idle counter (for the special priority 0 idle process)
diskFree: INT,   -- # of free disk pages on the system volume
mdsFree: CARDINAL, -- # of pages of MDS free
gfiFree: CARDINAL,  -- # of free gfi's
vmFree: CARDINAL,  -- # of VM free pages
vmRun: CARDINAL,  -- max # of contiguous free VM pages
cpuLoad: REAL   -- processor % busy (in [0.0..1.0])
];
GetWatchStats: PROC RETURNS [WatchStatsRecord];
END.