Collector.mesa
Definitions for control of the Cedar incremental collector
Paul Rovner, December 6, 1983 11:27 am
DIRECTORY
Allocator USING[NHeaderP],
SafeStorage USING[ReclamationReason];
Collector: DEFINITIONS = BEGIN
Disposition: TYPE = MACHINE DEPENDENT {continue(0), reclaimIt(1), finalizeIt(2)};
InternalReclaim: PROC[reason: SafeStorage.ReclamationReason, suspendMe: BOOL];
Reclaim: PROC[nhp: Allocator.NHeaderP];
EstablishTAndSProc: PROC [proc: PROC];
END.