X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FSchedule.h;h=2dd4acd0d99be8a63f8fa0736eca968272d581f9;hb=d71615757d0462b1721ee3664c5fa9f79325d666;hp=c83b6fdcb628077bd208c0ae353e8fedaf8f72e2;hpb=7d7c187b4a12f1bb350e85cdb0115e19537cc704;p=ghc-hetmet.git diff --git a/rts/Schedule.h b/rts/Schedule.h index c83b6fd..2dd4acd 100644 --- a/rts/Schedule.h +++ b/rts/Schedule.h @@ -12,9 +12,9 @@ #include "rts/OSThreads.h" #include "Capability.h" -#include "eventlog/EventLog.h" +#include "Trace.h" -#pragma GCC visibility push(hidden) +BEGIN_RTS_PRIVATE /* initScheduler(), exitScheduler() * Called from STG : no @@ -136,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. @@ -241,7 +241,7 @@ emptyThreadQueues(Capability *cap) #endif /* !IN_STG_CODE */ -#pragma GCC visibility pop +END_RTS_PRIVATE #endif /* SCHEDULE_H */