X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2Fsm%2FStorage.h;h=e541193573cfdbcf73ace1888696771e96b20659;hb=f9076f8091c9b88287418f76c01a32149df0fc71;hp=f810a858a3733c47fc0e9a906075111f2e4bfe04;hpb=51741bdea146fbc65ad3509c8f97a5ebff1433de;p=ghc-hetmet.git diff --git a/rts/sm/Storage.h b/rts/sm/Storage.h index f810a85..e541193 100644 --- a/rts/sm/Storage.h +++ b/rts/sm/Storage.h @@ -11,7 +11,7 @@ #include "Capability.h" -BEGIN_RTS_PRIVATE +#include "BeginPrivate.h" /* ----------------------------------------------------------------------------- Initialisation / De-initialisation @@ -19,7 +19,7 @@ BEGIN_RTS_PRIVATE void initStorage(void); void exitStorage(void); -void freeStorage(void); +void freeStorage(rtsBool free_heap); /* ----------------------------------------------------------------------------- Storage manager state @@ -29,7 +29,7 @@ INLINE_HEADER rtsBool doYouWantToGC( Capability *cap ) { return (cap->r.rCurrentNursery->link == NULL || - cap->r.rNursery->n_large_blocks >= alloc_blocks_lim); + g0->n_large_blocks >= alloc_blocks_lim); } /* for splitting blocks groups in two */ @@ -121,7 +121,7 @@ void dirty_MVAR(StgRegTable *reg, StgClosure *p); Nursery manipulation -------------------------------------------------------------------------- */ -extern step *nurseries; +extern nursery *nurseries; void resetNurseries ( void ); void resizeNurseries ( nat blocks ); @@ -132,24 +132,18 @@ lnat countNurseryBlocks ( void ); Stats 'n' DEBUG stuff -------------------------------------------------------------------------- */ -extern ullong total_allocated; - lnat calcAllocated (void); lnat calcLiveBlocks (void); lnat calcLiveWords (void); lnat countOccupied (bdescr *bd); lnat calcNeeded (void); -HsInt64 getAllocations (void); - -#if defined(DEBUG) -void memInventory (rtsBool show); -nat countBlocks (bdescr *); -#endif /* ---------------------------------------------------------------------------- Storage manager internal APIs and globals ------------------------------------------------------------------------- */ +extern bdescr *exec_block; + #define END_OF_STATIC_LIST ((StgClosure*)1) void move_TSO (StgTSO *src, StgTSO *dest); @@ -157,6 +151,6 @@ void move_TSO (StgTSO *src, StgTSO *dest); extern StgClosure * caf_list; extern StgClosure * revertible_caf_list; -END_RTS_PRIVATE +#include "EndPrivate.h" #endif /* SM_STORAGE_H */