-- Copyright (C) 1986 by Xerox Corporation. All rights reserved. -- Stub file was translated on May 9, 1986 4:57:16 pm PDT by Lupine of February 22, 1986 5:15:54 pm PST -- Source interface Lark came from file Lark.bcd, which was created on May 9, 1986 3:47:44 pm PDT with version stamp 111#243#11006740257 from source of May 9, 1986 3:28:51 pm PDT. -- The RPC stub modules for Lark are: -- LarkRpcControl.mesa; -- LarkRpcClientImpl.mesa; -- LarkRpcBinderImpl.mesa; -- LarkRpcServerImpl.mesa. -- The parameters for this translation are: -- Target language = Cedar -- Default parameter passing = VALUE -- Deallocate server heap arguments = TRUE -- Inline RpcServerImpl dispatcher stubs = TRUE -- Declare signals = TRUE -- 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 Lark, LarkRpcControl USING [ImportInterface, InterfaceRecord, InterfaceRecordObject], RPC USING [InterfaceName, Zones], RPCLupineExtras --USING SOME OF [ImportInterfaceWithHost, noHost, -- RPCHost]--; LarkRpcBinderImpl: MONITOR IMPORTS RpcControl: LarkRpcControl, RpcPrivateExtras: RPCLupineExtras EXPORTS LarkRpcControl SHARES Lark, LarkRpcControl = BEGIN OPEN RpcPublic: RPC; -- Dynamic instantiation and binding routines. ImportNewInterface: PUBLIC SAFE PROCEDURE [ interfaceName: RpcPublic.InterfaceName, parameterStorage: RpcPublic.Zones, hostHint: RpcPrivateExtras.RPCHost_RpcPrivateExtras.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. -- LarkRpcBinderImpl.