[BACK]Return to leak_detector.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc / include

Annotation of OpenXM_contrib2/asir2000/gc/include/leak_detector.h, Revision 1.3

1.1       noro        1: #define GC_DEBUG
                      2: #include "gc.h"
                      3: #define malloc(n) GC_MALLOC(n)
1.3     ! noro        4: #define calloc(m,n) GC_MALLOC((m)*(n))
1.1       noro        5: #define free(p) GC_FREE(p)
1.3     ! noro        6: #define realloc(p,n) GC_REALLOC((p),(n))
1.1       noro        7: #define CHECK_LEAKS() GC_gcollect()

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>