VMExtras.mesa
last edited by Hagmann on May 14, 1984 10:30:38 am PDT
DIRECTORY
VM USING [IOErrorType, PageNumber];
VMExtras: CEDAR DEFINITIONS =
BEGIN
LaundryError:
TYPE =
RECORD [
errorType: VM.IOErrorType, -- error classification
page: VM.PageNumber -- full GName of the remote file operated upon
];
A call to this procedure will force the VM laundry process to clean some memory.
ForceCleaning: PROC;
Gives the value of the last disk write error as seen by the VM laundry process. A value of [software, 0] returned means no errors have been encountered.
LastLaundryError: PROC RETURNS [LaundryError];
END.