|
|
|
|
|
dbgStartMemoryDiff (Function) In french: dbgDébutDiffMémoire 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.). // 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
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|