- Timestamp:
- Sep 25, 2020 9:04:55 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140573
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r86035 r86296 1499 1499 # define RTMemContFree RT_MANGLER(RTMemContFree) /* r0drv */ 1500 1500 # define RTMemDump RT_MANGLER(RTMemDump) 1501 # define RTMemDumpFreed RT_MANGLER(RTMemDumpFreed) 1501 1502 # define RTMemDupExTag RT_MANGLER(RTMemDupExTag) 1502 1503 # define RTMemDupTag RT_MANGLER(RTMemDupTag) -
trunk/src/VBox/Runtime/r3/alloc-ef.cpp
r83548 r86296 308 308 rtmemBlockUnlock(); 309 309 return pBlock; 310 } 311 312 313 /** 314 * Dumps the freed blocks. 315 * This is something which you should call from gdb. 316 */ 317 extern "C" void RTMemDumpFreed(void); 318 void RTMemDumpFreed(void) 319 { 320 fprintf(stderr, "address size(alg) caller\n"); 321 for (PRTMEMBLOCK pCur = g_pBlocksDelayHead; pCur; pCur = (PRTMEMBLOCK)pCur->Core.pRight) 322 RTMemDumpOne(&pCur->Core, NULL); 323 310 324 } 311 325
Note:
See TracChangeset
for help on using the changeset viewer.