MBStorage.mesa
Last Edited by: Levin, April 5, 1983 2:02 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];
PagesForWords: PROC [nWords: CARDINAL] RETURNS [CARDINAL];
END.