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


Translation Table

The GetPhysical function uses a translation table to hold information about a logical address range and its corresponding physical addresses. A translation table is defined by the data type LogicalToPhysicalTable.

TYPE LogicalToPhysicalTable =
RECORD
   logical:    MemoryBlock;         {a logical block}
   physical:   ARRAY[0..defaultPhysicalEntryCount-1] OF
                      MemoryBlock;  {equivalent physical blocks}
END;
Field Description
logical
A logical block of memory whose corresponding physical blocks are to be determined.
physical
A physical translation table that identifies the blocks of physical memory corresponding to the logical block identified in the logical field.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
3 JUL 1996