LoganBerryBackdoor.mesa
Copyright © 1985, 1986 by Xerox Corporation. All rights reserved.
Doug Terry, March 6, 1986 12:03:01 pm PST
Swinehart, November 8, 1986 3:25:59 pm PST
Provides access to log-entry reading and writing routines.
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: BOOLEANFALSE]
RETURNS [LoganBerryStructure.LogAddress];
MarkUpdateComplete: PROC [logStream: IO.STREAM];
}.