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
Hal Murray, March 22, 1986 9:13:15 pm PST
Copyright © 1984 by Xerox Corporation. All rights reserved.
DIRECTORY
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.