YggHostFSUNIXPrivate.mesa
Copyright Ó 1988 by Xerox Corporation. All rights reserved.
Bob Hagmann May 13, 1988 9:33:59 am PDT
DIRECTORY
YggDID USING [DID],
Rope USING[ROPE];
YggHostFSUNIXPrivate: CEDAR DEFINITIONS =
BEGIN
HostFileRep: TYPE = RECORD [
did: YggDID.DID,
component: ATOM, -- which part of the document (contents, links, attributes)
locked: BOOLFALSE,
users: INT ← 0,
name: Rope.ROPE ← NIL,
fd: INT ← 0,
fdLockCount: INT ← 0
];
The runtime representation of a file. NIL never represents a valid file.
END.