Carbon


LogicalToPhysicalTable

Header: MacMemory.h

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.

struct LogicalToPhysicalTable {
    MemoryBlock logical; 
    MemoryBlock physical[8];
};

Field descriptions

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.

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.


© 2000 Apple Computer, Inc. — (Last Updated 4/6/2000)