aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.3/boehm-gc/include/leak_detector.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.3/boehm-gc/include/leak_detector.h')
-rw-r--r--gcc-4.8.3/boehm-gc/include/leak_detector.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc-4.8.3/boehm-gc/include/leak_detector.h b/gcc-4.8.3/boehm-gc/include/leak_detector.h
new file mode 100644
index 000000000..0674ab4d0
--- /dev/null
+++ b/gcc-4.8.3/boehm-gc/include/leak_detector.h
@@ -0,0 +1,7 @@
+#define GC_DEBUG
+#include "gc.h"
+#define malloc(n) GC_MALLOC(n)
+#define calloc(m,n) GC_MALLOC((m)*(n))
+#define free(p) GC_FREE(p)
+#define realloc(p,n) GC_REALLOC((p),(n))
+#define CHECK_LEAKS() GC_gcollect()