Reputation: 41
I have 3 GB RAM. Is there a way to allocate only 512MB of RAM to a C++ application?
Else
Is there a way to reduce my RAM to 512MB for a while for testing purpose?
Thanks, Ashok
Upvotes: 3
Views: 581
Reputation: 33792
Use SetProcessWorkingSetSize()
Sets the minimum and maximum working set sizes for the specified process.
Upvotes: 4