Fixed yet another nasty bug, added additional data collection and analysis
[cacao.git] / mm / allocator.h
index 803b82005654f07d69013b383531c4b1f6da0ccd..d3e402c0a720f32fcc2342243446e63ea6d48723 100644 (file)
@@ -1,11 +1,13 @@
 /*
  * cacao/mm/allocator.h
- * $Id: allocator.h 93 1998-11-25 11:49:36Z phil $
+ * $Id: allocator.h 105 1998-12-10 17:48:53Z phil $
  */
 
 #ifndef __allocator_h_
 #define __allocator_h_
 
+#include "bitmap2.h"
+
 #ifndef YES
 #      define YES              1
 #endif
@@ -102,6 +104,10 @@ void* allocator_alloc(SIZE size);
 void allocator_init(void);
 void allocator_reset(void);
 
+void allocator_mark_free_kludge(BITBLOCK* bitmap);
+
+unsigned char find_highest(SIZE bits);
+
 #endif /* !defined(__allocator_h_) */