Refactoring only
[ghc-hetmet.git] / rts / sm / BlockAlloc.h
index 594135a..b6d451f 100644 (file)
@@ -9,14 +9,23 @@
 #ifndef BLOCK_ALLOC_H
 #define BLOCK_ALLOC_H
 
+BEGIN_RTS_PRIVATE
+
 /* Debugging  -------------------------------------------------------------- */
 
+extern nat countBlocks       (bdescr *bd);
+extern nat countAllocdBlocks (bdescr *bd);
+
 #ifdef DEBUG
-extern void checkFreeListSanity(void);
-nat         countFreeList(void);
+void checkFreeListSanity(void);
+nat  countFreeList(void);
+void markBlocks (bdescr *bd);
+void reportUnmarkedBlocks (void);
 #endif
 
 extern lnat n_alloc_blocks;   // currently allocated blocks
 extern lnat hw_alloc_blocks;  // high-water allocated blocks
 
+END_RTS_PRIVATE
+
 #endif /* BLOCK_ALLOC_H */