Starts a difference operation of the memory used by the application. This operation will be ended during the call to
dbgEndMemoryDiff.
This debugging method is used to isolate the memory resources of an operation that should be neutral for the memory. This allows you to correct the code and to add the potential missing freeing statements (queries no longer used, global object no longer used during the rest of the execution, etc.).
Versions 21 and later
New in version 21
Versions 24 and later
New in version 24
// Beginning of the memory diff
// before the operation that should be neutral for the memory
dbgStartMemoryDiff()
...
// Operation that should be neutral for the memory
...
// Save the memory dump
// after the operation that should be neutral for the memory
dbgEndMemoryDiff()
Business / UI classification: Neutral code