source:
trunk/gc6.8/include/leak_detector.h
| Last change on this file was 132, checked in by , 19 years ago | |
|---|---|
| File size: 254 bytes | |
| Line | |
|---|---|
| 1 | #define GC_DEBUG |
| 2 | #include "gc.h" |
| 3 | #define malloc(n) GC_MALLOC(n) |
| 4 | #define calloc(m,n) GC_MALLOC((m)*(n)) |
| 5 | #define free(p) GC_FREE(p) |
| 6 | #define realloc(p,n) GC_REALLOC((p),(n)) |
| 7 | #undef strdup |
| 8 | #define strdup(s) GC_STRDUP((s)) |
| 9 | #define CHECK_LEAKS() GC_gcollect() |
Note:
See TracBrowser
for help on using the repository browser.
