FrameAllocator.mesa
Carl Hauser, November 11, 1986 5:09:35 pm PST
The allocator for local frame extensions. Local frames themselves, of course, are in the register stack.
FrameAllocator: CEDAR DEFINITIONS
~ BEGIN
FrameHandle: TYPE = POINTER;
Allocate: PROC [words: NAT] RETURNS [frame: FrameHandle];
Free: PROC [frame: FrameHandle];
END.