DBExtras.mesa
Last Edited by: Wert, July 27, 1984 1:57:14 am PDT
DIRECTORY
DB USING [Segment];
DBExtras: CEDAR DEFINITIONS
= BEGIN
GetFileChanged: PROC [s: DB.Segment]
RETURNS
[fileChanged: BOOL];
After a DB.OpenTransaction[], returns TRUE if the specified segment has been changed since the last DB.CloseTransaction[] or DB.AbortTransaction[]. The segment has always been changed after the first DB.OpenTransaction[]. If you are reopening the transaction after a DB.Aborted, this indicates that you were probably aborted due to an interference.
END.