在 Windows 上开始分配失败之前检测内存不足

2022-01-12 00:00:00 windows memory-management c++ mfc

We have an application that could potentially allocate a large number of small objects (depending on user input). Sometimes the application runs out of memory and effectively crashes.

However, if we knew that memory allocations were becoming tight there are some lower-priority objects which could be destroyed and thereby allow us to gracefully degrade the user results.

What's the best way to detect that memory for a process is running low before calls to 'new' actually fail? We could call API functions like GetProcessWorkingSetSize() or GetProcessMemoryInfo() but how do you know when the limits on a given machine are being reached (e.g. with 80% of maximum allocations)?

解决方案

  • At start up, allocate a memory reserve.
  • Then use set_new_handler() to install a hook that will detect allocations failures.
  • When one happens:
    • Free the reserve (so you have enough free memory to work with).
    • Run your code that finds and frees low priority objects.
    • When that has done its job, try to reallocate the reserve again (for next time).
    • Finally return to let the original allocation attempt retry.

相关文章