Root > Reference > All Functions > ReserveLowerMemory

Procedure ReserveLowerMemory

Previous pageReturn to chapter overviewNext page   

Reserves lower 2 Gb (32-bit app) or 4 Gb (64-bit app) of address space.

 

Unit

ELowLevel

 

Syntax

 

Code (Delphi)

procedure ReserveLowerMemory;

 

Remarks

This function reserves lower part of address space. This would cause memory allocations to get memory from higher addresses, thus helping you to catch bugs in your code (like Integer-Pointer conversion, using signed Integers, etc).

 

This function does not allocate any memory. Address space is simply reserved. Therefore, your application will not allocate any additional memory when using this function. However, the available address space will be decreased, so your code may run out of memory.

 

We recommend to always call this function in all 64-bit applications, as it has plenty free address space.

 

Warning

Do not call this function in a 32-bit app without marking your app as "large address awared". Otherwise your application will have no memory to run!

 

Caution!

Please note that your 32-bit large address awared application will have just 1 Gb (when run on 32-bit system) or 2 Gb (when run on 64-bit system) of memory after calling this function.

 

For this reason - we recommend to call this function for 32-bit apps only when debugging, not in production.

 




Send feedback... Build date: 2025-03-17
Last edited: 2025-03-17
PRIVACY STATEMENT
The documentation team uses the feedback submitted to improve the EurekaLog documentation. We do not use your e-mail address for any other purpose. We will remove your e-mail address from our system after the issue you are reporting has been resolved. While we are working to resolve this issue, we may send you an e-mail message to request more information about your feedback. After the issues have been addressed, we may send you an email message to let you know that your feedback has been addressed.


Permanent link to this article: https://www.eurekalog.com/help/eurekalog/topic_function_elowlevel_reservelowermemory.php