00001 #include "charm++.h" 00002 #include "trace-common.h" 00003 #include "trace.h" 00004 #include "tracec.h" 00005 00006 extern "C" { 00007 00008 void traceMalloc_c(void *where, int size, void **stack, int stackSize) { 00009 _TRACE_MALLOC(where, size, stack, stackSize); 00010 } 00011 00012 void traceFree_c(void *where, int size) { 00013 _TRACE_FREE(where, size); 00014 } 00015 00016 }