-- TransactionExtras.mesa -- last edited by Levin on June 1, 1982 2:13 pm TransactionExtras: DEFINITIONS = BEGIN DoCrashRecovery: PROCEDURE; -- This procedure performs the non-initialization part of transaction crash recovery. -- Formerly, this code was tangled up with StoragePrograms.RecoverTransactions, which -- now calls this instead. TransactionsInProgress: PROCEDURE RETURNS [BOOLEAN]; -- This procedure returns TRUE if there exists transactions which have been neither -- committed or aborted. END.