summaryrefslogtreecommitdiff
path: root/rts/sm/BlockAlloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'rts/sm/BlockAlloc.h')
-rw-r--r--rts/sm/BlockAlloc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/rts/sm/BlockAlloc.h b/rts/sm/BlockAlloc.h
index d26bb24cff..aebb71a913 100644
--- a/rts/sm/BlockAlloc.h
+++ b/rts/sm/BlockAlloc.h
@@ -11,23 +11,23 @@
#include "BeginPrivate.h"
-bdescr *allocLargeChunk (void);
+bdescr *allocLargeChunk (W_ min, W_ max);
/* Debugging -------------------------------------------------------------- */
-extern nat countBlocks (bdescr *bd);
-extern nat countAllocdBlocks (bdescr *bd);
+extern W_ countBlocks (bdescr *bd);
+extern W_ countAllocdBlocks (bdescr *bd);
extern void returnMemoryToOS(nat n);
#ifdef DEBUG
void checkFreeListSanity(void);
-nat countFreeList(void);
+W_ 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
+extern W_ n_alloc_blocks; // currently allocated blocks
+extern W_ hw_alloc_blocks; // high-water allocated blocks
#include "EndPrivate.h"