-- WorkerInternal.mesa -- Procedures internal to worker implementation. -- Last edited by -- MBrown on April 3, 1983 9:05 am DIRECTORY ; WorkerInternal: DEFINITIONS = BEGIN WorkerLogWatchdogProcess: PROC []; -- Implemented by WorkerImpl, called from WorkerLogWatchdogImpl NotifyLogWatchdog: PROC []; -- Implemented by WorkerLogWatchdogImpl, called from WorkerImpl -- Log watchdog process should wake up and examine the oldest workers; they --may need to be aborted. WaitForNotify: PROC []; -- Implemented by WorkerLogWatchdogImpl, called from WorkerImpl END.