CirioNubAccessPrivate.mesa
Sturgis, February 2, 1990 3:41:16 pm PST
Linda Howe December 27, 1989 3:54:21 pm PST
Laurie Horton, September 27, 1991 1:08 pm PDT
DIRECTORY;
CirioNubAccessPrivate: CEDAR DEFINITIONS =
BEGIN
HandleBody: TYPE = MONITORED RECORD[live: BOOLEAN, version: CARD, allocatedItems: REF AllocatedItems, contents: REF ANY, target: REF ANY];
AllocatedItems: TYPE = RECORD[earlyFreeSlots: LIST OF CARD, firstLateFreeSlot: CARD, slots: SEQUENCE nSlots: CARDINAL OF REF AllocHandleBody];
the free slots are the earlyFreeSlots together with [firstLateFreeSlot..nItems).
AllocHandleBody: TYPE = RECORD[h: REF HandleBody, index: CARD, data: REF ANY];
END..