XlShmMonitor.mesa
Copyright Ó 1993 by Xerox Corporation. All rights reserved.
Created by Christian Jacobi, March 23, 1993
Christian Jacobi, March 23, 1993 12:10 pm PST
Private interface to monitor resource usage.
Useful to gather global system information. e.g. for tuning.
This interface may be changed outside a regular release.
XlShmMonitor: CEDAR DEFINITIONS
~ BEGIN
Next: PROC [segment: REF ¬ NIL] RETURNS [REF];
Start with NIL to get first shared memory segment; returns NIL if no more segment is available.
Segments created while an enumeration is in progress might or might not be seen.
Info: PROC [segment: REF] RETURNS [addr: CARD, bytes: CARD, id: CARD];
Returns vital information on a particular shared memory segment.
END.