-- SLRestart.mesa	Transport Mechanism Mail Server - SL Restart --

-- Randy Gobbel		19-May-81 12:48:15 --
-- Andrew Birrell	September 13, 1982 3:43 pm --
-- Hankins	31-Jul-84  8:48:49	Klamath update (moved to SLQueueImpl)

DIRECTORY

  RestartDefs,  -- export only
  SLDefs USING [RestartQueues],
  SLQueueImpl;

SLRestart: PROGRAM [initHeap: BOOLEAN]
  IMPORTS SLDefs, SLQueueImpl EXPORTS RestartDefs -- PROGRAM -- =

  BEGIN

  START SLQueueImpl;

  SLDefs.RestartQueues[initHeap];

  END.