Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Memory /
Chapter 3 - Virtual Memory Manager / Virtual Memory Manager Reference
Data Structures


Memory-Block Record

The GetPhysical function uses a memory-block record to hold information about a block of memory, either logical or physical. The memory-block record is a data structure of type MemoryBlock.

TYPE MemoryBlock =
RECORD
   address:    Ptr;              {start of block}
   count:      LongInt;          {size of block}
END;
Field Description
address
A pointer to the beginning of a block of memory.
count
The number of bytes in the block of memory.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
3 JUL 1996