X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2Fsm%2FGCUtils.h;h=3fe78a33100f297dc66b9de4bcc81011da497d10;hb=bef3da1e26639303fccbf26c312d2833eedb486e;hp=c8f8d55c6030abf14014c8510a7faeebf4070f85;hpb=7d7c187b4a12f1bb350e85cdb0115e19537cc704;p=ghc-hetmet.git diff --git a/rts/sm/GCUtils.h b/rts/sm/GCUtils.h index c8f8d55..3fe78a3 100644 --- a/rts/sm/GCUtils.h +++ b/rts/sm/GCUtils.h @@ -14,16 +14,16 @@ #ifndef SM_GCUTILS_H #define SM_GCUTILS_H -#pragma GCC visibility push(hidden) +#include "BeginPrivate.h" bdescr *allocBlock_sync(void); void freeChain_sync(bdescr *bd); -void push_scanned_block (bdescr *bd, step_workspace *ws); -StgPtr todo_block_full (nat size, step_workspace *ws); -StgPtr alloc_todo_block (step_workspace *ws, nat size); +void push_scanned_block (bdescr *bd, gen_workspace *ws); +StgPtr todo_block_full (nat size, gen_workspace *ws); +StgPtr alloc_todo_block (gen_workspace *ws, nat size); -bdescr *grab_local_todo_block (step_workspace *ws); +bdescr *grab_local_todo_block (gen_workspace *ws); #if defined(THREADED_RTS) bdescr *steal_todo_block (nat s); #endif @@ -39,7 +39,7 @@ isPartiallyFull(bdescr *bd) #if DEBUG -void printMutableList (generation *gen); +void printMutableList (bdescr *bd); #endif // Version of recordMutableGen for use during GC. This uses the @@ -61,6 +61,6 @@ recordMutableGen_GC (StgClosure *p, nat gen_no) *bd->free++ = (StgWord)p; } -#pragma GCC visibility pop +#include "EndPrivate.h" #endif /* SM_GCUTILS_H */