ComputeServerDebugger.mesa
Compute Server debugger interface for the Summoner. This RPC interface is between the Server (client for this interface) and the Client (who is the server for this interface). The Client and Server reverse rolls here because this is a callback interface.
This interface is used to start up a PupStream between the two machines, and to monitor operations.
Last Edited by: Bob Hagmann, September 27, 1984 5:11:49 pm PDT
Copyright © 1984 by Xerox Corporation. All rights reserved.
DIRECTORY
PupDefs,
Rope;
ComputeServerDebugger: CEDAR DEFINITIONS
=
BEGIN
OpenDebugStream: PROC [listenerPupAddress: PupDefs.PupAddress, newListenerPupAddress: PupDefs.PupAddress, name: Rope.ROPE, serverMachine: Rope.ROPE] RETURNS [byteStreamOK: BOOLTRUE] ;
OpenSourceViewer: PROC [listenerPupAddress: PupDefs.PupAddress, name: Rope.ROPE, index: INT ] ;
END....