X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=rts%2Fsm%2FStorage.h;h=30bdf54a1d9cc21edf7d63ca5b00d16b904aaa74;hp=573d6bcd5b97b9646131d66eb842116ffe99cfe5;hb=5270423a6afe69f1dc57e5e5a474812182718d40;hpb=254528e32a007e508bb5967948ba02aa15c7e482 diff --git a/rts/sm/Storage.h b/rts/sm/Storage.h index 573d6bc..30bdf54 100644 --- a/rts/sm/Storage.h +++ b/rts/sm/Storage.h @@ -9,7 +9,9 @@ #ifndef SM_STORAGE_H #define SM_STORAGE_H -#pragma GCC visibility push(hidden) +#include "Capability.h" + +BEGIN_RTS_PRIVATE /* ----------------------------------------------------------------------------- Initialisation / De-initialisation @@ -23,12 +25,11 @@ void freeStorage(void); Storage manager state -------------------------------------------------------------------------- */ -extern bdescr * pinned_object_block; - INLINE_HEADER rtsBool -doYouWantToGC( void ) +doYouWantToGC( Capability *cap ) { - return (alloc_blocks >= alloc_blocks_lim); + return (cap->r.rCurrentNursery->link == NULL || + cap->r.rNursery->n_large_blocks >= alloc_blocks_lim); } /* for splitting blocks groups in two */ @@ -120,6 +121,8 @@ void dirty_MVAR(StgRegTable *reg, StgClosure *p); Nursery manipulation -------------------------------------------------------------------------- */ +extern step *nurseries; + void resetNurseries ( void ); void resizeNurseries ( nat blocks ); void resizeNurseriesFixed ( nat blocks ); @@ -156,6 +159,6 @@ void move_TSO (StgTSO *src, StgTSO *dest); extern StgClosure * caf_list; extern StgClosure * revertible_caf_list; -#pragma GCC visibility pop +END_RTS_PRIVATE #endif /* SM_STORAGE_H */