Home |
RTTarget-32 Programming Manual Function RTReserveVirtualAddress Function RTReleaseVirtualAddress Function RTAllocPhysPageAligned Function RTGetProcessPhysMemHeap System Management BIOS (SMBIOS) Advanced Programmable Interrupt Controller (APIC) |
Function RTReleaseVirtualAddressFunction RTReleaseVirtualAddress marks an address range to be available for future reservation: int RTReleaseVirtualAddress(const void * Virtual, unsigned Bytes); ParametersVirtualLocation of the address range to release. BytesSize of the address range to release. return valueCan be RT_MAP_SUCCESS or RT_MAP_OUT_OF_MEM (see section Function RTReserveVirtualAddress). The address range is unmapped from memory, causing any subsequent accesses to trigger page faults. Function RTReserveVirtualAddress
|