Fix #3439: -debug implies -ticky, and -ticky code links with any RTS
[ghc-hetmet.git] / rts / Schedule.h
index 378bd68..2dd4acd 100644 (file)
@@ -12,7 +12,9 @@
 
 #include "rts/OSThreads.h"
 #include "Capability.h"
-#include "eventlog/EventLog.h"
+#include "Trace.h"
+
+BEGIN_RTS_PRIVATE
 
 /* initScheduler(), exitScheduler()
  * Called from STG :  no
@@ -134,7 +136,7 @@ appendToRunQueue (Capability *cap, StgTSO *tso)
        setTSOLink(cap, cap->run_queue_tl, tso);
     }
     cap->run_queue_tl = tso;
-    postEvent (cap, EVENT_THREAD_RUNNABLE, tso->id, 0);
+    traceSchedEvent (cap, EVENT_THREAD_RUNNABLE, tso, 0);
 }
 
 /* Push a thread on the beginning of the run queue.
@@ -239,5 +241,7 @@ emptyThreadQueues(Capability *cap)
 
 #endif /* !IN_STG_CODE */
 
+END_RTS_PRIVATE
+
 #endif /* SCHEDULE_H */