MBStorage.mesa
Last Edited by: Levin, May 13, 1983 4:59 pm
MBStorage: DEFINITIONS =
BEGIN
This interface localizes all dependencies on wholesale allocation of
storage.
Pages: PROC [npages: CARDINAL] RETURNS [base: LONG POINTER];
MDSPages: PROC [npages: CARDINAL] RETURNS [base: POINTER];
Words: PROC [nwords: CARDINAL] RETURNS [base: LONG POINTER];
MDSWords: PROC [nwords: CARDINAL] RETURNS [base: LONG POINTER];
FreePages: PROC [base: LONG POINTER];
FreeMDSPages: PROC [base: POINTER];
FreeWords: PROC [base: LONG POINTER];
FreeMDSWords: PROC [base: POINTER];