jmalloc.hpp 557 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef __jmalloc_hpp_
  2. #define __jmalloc_hpp_
  3. #include <stdlib.h>
  4. #ifdef MANAGE_MEM
  5. enum {ALLOC_SPACE_STATIC,ALLOC_SPACE_CACHE};
  6. extern int alloc_space;
  7. void *jmalloc(long size, char *what_for);
  8. void *jrealloc(void *ptr, long size, char *what_for);
  9. void jfree(void *ptr);
  10. void mem_report(char *filename);
  11. void jmalloc_init(long min_size);
  12. void jmalloc_uninit();
  13. long j_allocated();
  14. long j_available();
  15. extern void free_up_memory();
  16. #else
  17. #define jmalloc(x,y) malloc(x)
  18. #define jrealloc(x,y,z) realloc(x,y)
  19. #define jfree(x) free(x)
  20. #endif
  21. #endif