YggRecoveryPassProcs.mesa
Copyright © 1985, 1987 by Xerox Corporation. All rights reserved.
Last edited by
MBrown on November 8, 1982 3:05 pm
Hauser, March 8, 1985 10:34:32 am PST
Bob Hagmann May 2, 1988 2:46:05 pm PDT
DIRECTORY
YggEnvironment;
YggRecoveryPassProcs: CEDAR DEFINITIONS =
BEGIN
This interface contains procedures that are called from the log implementation at
specific times during recovery. If a component of Alpine needs to do something
during recovery, its implementor should modify the implementation of one or more
or these procedures (located in InitProcsImpl). Sequencing of actions within
these groups in handled by these implementations.
CalledBeforeAnalysisPass: PROC [
fileStore: YggEnvironment.FileStore, logVolume: YggEnvironment.VolumeID];
The server name is determined during recovery before the analysis pass, and
is passed to this procedure.
CalledAfterAnalysisPass: PROC [];
CalledBeforeUpdatePass: PROC [];
CalledAfterUpdatePass: PROC [];
END.
Hauser, March 8, 1985 10:34:17 am PST
Nodified, added copyright.