LocalCirioWorld.mesa
Sturgis: March 27, 1990 9:22 am PST
Spreitze, May 14, 1991 7:15 pm PDT
DIRECTORY
CCTypes USING[CC],
IO USING[STREAM];
LocalCirioWorld: CEDAR DEFINITIONS =
BEGIN
CreateAndRegisterNominalLocalCirioTW: PROC[cc: CCTypes.CC, reports: IO.STREAM];
This procedure will be called by RemoteCirioImpl during the creation of a remote connection. The desire is to obtain a local world in which to execute ampersand routines etc.; the call on NewRMTW.CreateRemoteMimosaTargetWorld done herein does not set the standard types in cc. Breakpoint setting may not be supported in this world.
This procedure calls CCTypes.RegisterLocalCedarTargetWorld to register a CCTypes.LocalCedarTargetWorld.
This implementation of this procedure depends upon whether we are in the D-Machine world or a PCR world:
In the D-Machine world it is exported by LocalCirioWorldImplPrincOps. In the PCR world it is exported by LocalCirioImpl.
END..