Use mutator threads to do GC, instead of having a separate pool of GC threads
[ghc-hetmet.git] / rts / sm / GC.h
index b95466e..5fb142f 100644 (file)
@@ -1,6 +1,6 @@
 /* -----------------------------------------------------------------------------
  *
- * (c) The GHC Team 1998-2006
+ * (c) The GHC Team 1998-2008
  *
  * Generational garbage collector
  *
 
 extern nat N;
 extern rtsBool major_gc;
-extern nat evac_gen;
-extern rtsBool eager_promotion;
-extern rtsBool failed_to_evac;
-
-extern StgClosure* static_objects;
-extern StgClosure* scavenged_static_objects;
 
 extern bdescr *mark_stack_bdescr;
 extern StgPtr *mark_stack;
@@ -32,13 +26,24 @@ extern rtsBool mark_stack_overflowed;
 extern bdescr *oldgen_scan_bd;
 extern StgPtr  oldgen_scan;
 
-extern lnat new_blocks;                 // blocks allocated during this GC 
-extern lnat new_scavd_blocks;   // ditto, but depth-first blocks
+extern long copied;
 
 #ifdef DEBUG
-extern nat mutlist_MUTVARS, mutlist_MUTARRS, mutlist_OTHERS;
+extern nat mutlist_MUTVARS, mutlist_MUTARRS, mutlist_MVARS, mutlist_OTHERS;
+#endif
+
+#ifdef THREADED_RTS
+extern SpinLock gc_alloc_block_sync;
 #endif
 
-StgClosure * isAlive(StgClosure *p);
+#if defined(PROF_SPIN) && defined(THREADED_RTS)
+extern StgWord64 whitehole_spin;
+#endif
+
+void gcWorkerThread (Capability *cap);
+void initGcThreads (void);
+void waitForGcThreads (Capability *cap);
+
+#define WORK_UNIT_WORDS 128
 
 #endif /* GC_H */