Use _ rather than : for the builtin package filenames
[ghc-hetmet.git] / rts / sm / GC.h
index 920b464..4b928e9 100644 (file)
@@ -14,6 +14,8 @@
 #ifndef SM_GC_H
 #define SM_GC_H
 
+BEGIN_RTS_PRIVATE
+
 void GarbageCollect(rtsBool force_major_gc, nat gc_type, Capability *cap);
 
 typedef void (*evac_fn)(void *user, StgClosure **root);
@@ -41,10 +43,6 @@ extern rtsBool work_stealing;
 extern nat mutlist_MUTVARS, mutlist_MUTARRS, mutlist_MVARS, mutlist_OTHERS;
 #endif
 
-#ifdef THREADED_RTS
-extern SpinLock gc_alloc_block_sync;
-#endif
-
 #if defined(PROF_SPIN) && defined(THREADED_RTS)
 extern StgWord64 whitehole_spin;
 #endif
@@ -60,4 +58,6 @@ void releaseGCThreads (Capability *cap);
 
 #define WORK_UNIT_WORDS 128
 
+END_RTS_PRIVATE
+
 #endif /* SM_GC_H */