PhGlobalsImpl.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Swinehart, October 20, 1992 10:32 am PDT
DIRECTORY Commander, PhSmarts;
PhGlobalsImpl: CEDAR MONITOR IMPORTS Commander EXPORTS PhSmarts ~ {
pd: PUBLIC REF PhSmarts.PD ¬ NEW[PhSmarts.PD¬[]];
lock: PUBLIC MONITORLOCK;
phoenixInfo: PUBLIC PhSmarts.PhoenixInfo ¬ NIL;
Examine: Commander.CommandProc ~ { a: INT; a¬3; a¬a+5; };
Commander.Register["PhExamine", Examine];
}.