MFC
TRY
Expand Minimize
This topic has not yet been rated - Rate this topic

afxMemDF

This variable is accessible from a debugger or your program and allows you to tune allocation diagnostics.

int afxMemDF;

afxMemDF can have the following values as specified by the enumeration afxMemDF:

  • allocMemDF   Turns on debugging allocator (default setting in Debug library).

  • delayFreeMemDF   Delays freeing memory. While your program frees a memory block, the allocator does not return that memory to the underlying operating system. This will place maximum memory stress on your program.

  • checkAlwaysMemDF   Calls AfxCheckMemory every time memory is allocated or freed. This will significantly slow memory allocations and deallocations.

afxMemDF = allocMemDF | checkAlwaysMemDF;   

Header: afx.h

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.