Home |
RTTarget-32 Programming Manual Function RTFindPhysMem Function RTReserveVirtualAddress Function RTReleaseVirtualAddress Function RTAllocPhysPageAligned Function RTGetProcessPhysMemHeap System Management BIOS (SMBIOS) Advanced Programmable Interrupt Controller (APIC) |
Function RTFindPhysMemFunction RTFindPhysMem scans the page table for a physical address range: void * RTFindPhysMem(const void * Physical, unsigned Bytes, int MinAccess); ParametersPhysicalThe address of the physical memory to find. BytesSpecifies its size in bytes. MinAccessSpecifies the minimum access level required. Values RT_PG_NOACCESS, RT_PG_SYSREAD, RT_PG_SYSREADWRITE, RT_PG_USERREAD, and RT_PG_USERREADWRITE are supported. return valueA pointer of the virtual address space to the requested physical address. If the function fails, NULL is returned. Most programs should use function RTMapPhysMem instead of this function. Function RTReserveVirtualAddress
|