ProcessPrivate.mesa
Carl Hauser, May 1, 1987 5:48:16 pm PDT
DIRECTORY
DragOps USING [StackedStatusWord, Word];
ProcessPrivate: CEDAR DEFINITIONS
~ BEGIN
Word: TYPE ~ DragOps.Word;
Nacho: TYPE ~ LONG POINTER TO NachoRep;
NachoRep: TYPE ~ RECORD [
link: Nacho, -- link to the next elder frame in the process stack
nextPC: Word, -- the continuation PC for the frame
status: DragOps.StackedStatusWord, -- the saved status register of the procedure
nRegs: Word, -- the # of registers saved in this Nacho
others: Nacho, -- the link to the area for more saved registers
regs: RegArray -- the saved registers (local variables)
];
RegArray: TYPE ~ ARRAY Reg OF Word;
Reg: TYPE ~ [0..15];
END.