-- Copyright (C) 1987 by Xerox Corporation. All rights reserved. -- Stub file was translated on March 25, 1987 3:05:15 pm PST by Lupine of January 22, 1987 5:37:32 pm PST -- Source interface AlpineDebug came from file AlpineDebug.bcd, which was created on March 25, 1987 12:09:55 pm PST with version stamp 253#315#12234636614 from source of March 7, 1985 2:08:38 pm PST. -- The RPC stub modules for AlpineDebug are: -- AlpineDebugRpcControl.mesa; -- AlpineDebugRpcClientImpl.mesa; -- AlpineDebugRpcBinderImpl.mesa; -- AlpineDebugRpcServerImpl.mesa. -- The parameters for this translation are: -- Target language = Cedar -- Default parameter passing = VALUE -- Deallocate server heap arguments = TRUE -- Inline RpcServerImpl dispatcher stubs = FALSE -- Declare signals = FALSE -- Warn about short POINTER ("MDS") allocations = TRUE -- Maximum number of dynamic heap NEWs = 50, MDS NEWs = 50 -- Acceptable parameter protocols = VersionRange[1..1]. -- NOTE: Discard this module unless you use dynamic client binding. DIRECTORY AlpineDebug, AlpineDebugRpcControl USING [ImportInterface, InterfaceRecord, InterfaceRecordObject], RPC USING [InterfaceName, Zones], RPCLupine --USING SOME OF [ImportInterfaceWithHost, noHost, RPCHost]--; AlpineDebugRpcBinderImpl: MONITOR IMPORTS AlpineDebug, RpcControl: AlpineDebugRpcControl, RpcPrivate: RPCLupine EXPORTS AlpineDebugRpcControl SHARES AlpineDebug, AlpineDebugRpcControl = BEGIN OPEN RpcPublic: RPC; -- Dynamic instantiation and binding routines. ImportNewInterface: PUBLIC SAFE PROCEDURE [ interfaceName: RpcPublic.InterfaceName, parameterStorage: RpcPublic.Zones, hostHint: RpcPrivate.RPCHost_RpcPrivate.noHost ] RETURNS [interfaceRecord: RpcControl.InterfaceRecord] = TRUSTED BEGIN interfaceRecord _ NewInterfaceRecord[]; RpcControl.ImportInterface[ interface: interfaceRecord, interfaceName: interfaceName, hostHint: hostHint, parameterStorage: parameterStorage]; END; -- Utility routines for interface instantiation and caching. NewInterfaceRecord: PUBLIC SAFE PROCEDURE RETURNS [interfaceRecord: RpcControl.InterfaceRecord] = TRUSTED BEGIN interfaceRecord _ NEW[RpcControl.InterfaceRecordObject]; END; -- No module initialization. END. -- AlpineDebugRpcBinderImpl.