YggDIDMapPrivate.mesa
Copyright Ó 1985, 1988 by Xerox Corporation. All rights reserved.
Last edited by
Kolling on January 23, 1984 3:27:19 pm PST
Kupfer, January 31, 1985 3:10:17 pm PST
Bob Hagmann May 13, 1988 8:25:57 am PDT
Carl Hauser, October 15, 1987 3:17:01 pm PDT
DIRECTORY
YggInternal USING[Document, FileHandle],
YggEnvironment USING [DID],
Rope USING[ROPE];
YggDIDMapPrivate: CEDAR DEFINITIONS =
BEGIN
Document: TYPE = YggInternal.Document;
DocumentRep: TYPE = MONITORED RECORD[
did: YggEnvironment.DID,
name: Rope.ROPE,  -- human-legible name.
componentFiles: LIST OF YggInternal.FileHandle,
interlock: BOOLEAN,
recoveryData: REF, -- used during recovery
next: Document];
END.