12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef SCM_DEBUG_MALLOC_H
- #define SCM_DEBUG_MALLOC_H
- #include "libguile/__scm.h"
- SCM_API void scm_malloc_register (void *obj, const char *what);
- SCM_API void scm_malloc_unregister (void *obj);
- SCM_API void scm_malloc_reregister (void *obj, void *new, const char *what);
- SCM_API SCM scm_malloc_stats (void);
- SCM_INTERNAL void scm_debug_malloc_prehistory (void);
- SCM_INTERNAL void scm_init_debug_malloc (void);
- #endif
|