SummonerControllerControl.mesa
Compute Server Controller Control interface for the Summoner. This interface is to the controller software on every machine that could be the controller (that is the same as any active server). This is not an RPC interface.
Last Edited by: Bob Hagmann, May 3, 1985 11:56:16 am PDT
Copyright © 1984 by Xerox Corporation. All rights reserved.
DIRECTORY
PupDefs,
Rope,
RPC;
SummonerControllerControl: CEDAR DEFINITIONS =
BEGIN
StartUpController: PROC [controllerName: Rope.ROPENIL, forceSelfAsPrimaryController: BOOLFALSE] RETURNS [] ;
ShutDownController: PROC [] RETURNS [] ;
ControllerCannnotBeImported: PROC [reason: RPC.ImportFailure];
ControllerCallFailed: PROC [reason: RPC.CallFailure];
NoticeControllerIsUp: PROC;
END.