LoganBerryBackdoor.mesa
Copyright Ó 1985, 1986, 1987, 1992 by Xerox Corporation. All rights reserved.
Doug Terry, October 24, 1990 5:46 pm PDT
Swinehart, September 6, 1987 12:04:59 pm PDT
Brian Oki November 15, 1989 4:51:52 pm PST
Provides access to log-entry reading and writing routines.
Willie-s, April 23, 1992 5:18 pm PDT
DIRECTORY
IO USING [STREAM],
LoganBerry USING [Entry],
LoganBerryStructure USING [LogAddress];
LoganBerryBackdoor: CEDAR DEFINITIONS ~ {
ReadLogEntry: PROC [
logStream: IO.STREAM, byte: LoganBerryStructure.LogAddress] RETURNS [LoganBerry.Entry];
WriteLogEntry: PROC [
logStream: IO.STREAM, entry: LoganBerry.Entry, continuation: BOOLEAN ¬ FALSE]
RETURNS [LoganBerryStructure.LogAddress];
MarkUpdateComplete: PROC [logStream: IO.STREAM];
}.