X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=rts%2FThreads.h;h=857658a2d08310fb211dcaa30f647a5def0e588b;hp=e331c50dae9ccc33e7687d99800f0cf0125a4795;hb=b2bd63f99d643f6b3eb30bb72bb9ae26d4183252;hpb=b1953bbb1ed3cb16497e5447db7487f0c2d9e41a diff --git a/rts/Threads.h b/rts/Threads.h index e331c50..857658a 100644 --- a/rts/Threads.h +++ b/rts/Threads.h @@ -9,38 +9,46 @@ #ifndef THREADS_H #define THREADS_H -#if defined(GRAN) || defined(PARALLEL_HASKELL) -StgBlockingQueueElement * unblockOne (StgBlockingQueueElement *bqe, - StgClosure *node); -#else +#include "BeginPrivate.h" + +#define END_BLOCKED_EXCEPTIONS_QUEUE ((MessageThrowTo*)END_TSO_QUEUE) + StgTSO * unblockOne (Capability *cap, StgTSO *tso); StgTSO * unblockOne_ (Capability *cap, StgTSO *tso, rtsBool allow_migrate); -#endif -#if defined(GRAN) || defined(PARALLEL_HASKELL) -void awakenBlockedQueue(StgBlockingQueueElement *q, StgClosure *node); -#else -void awakenBlockedQueue (Capability *cap, StgTSO *tso); +void checkBlockingQueues (Capability *cap, StgTSO *tso); +void wakeBlockingQueue (Capability *cap, StgBlockingQueue *bq); +void tryWakeupThread (Capability *cap, StgTSO *tso); +void migrateThread (Capability *from, StgTSO *tso, Capability *to); + +// Wakes up a thread on a Capability (probably a different Capability +// from the one held by the current Task). +// +#ifdef THREADED_RTS +void wakeupThreadOnCapability (Capability *cap, + Capability *other_cap, + StgTSO *tso); #endif -void removeThreadFromMVarQueue (StgMVar *mvar, StgTSO *tso); -void removeThreadFromQueue (StgTSO **queue, StgTSO *tso); -void removeThreadFromDeQueue (StgTSO **head, StgTSO **tail, StgTSO *tso); +void updateThunk (Capability *cap, StgTSO *tso, + StgClosure *thunk, StgClosure *val); + +rtsBool removeThreadFromQueue (Capability *cap, StgTSO **queue, StgTSO *tso); +rtsBool removeThreadFromDeQueue (Capability *cap, StgTSO **head, StgTSO **tail, StgTSO *tso); StgBool isThreadBound (StgTSO* tso); +// Overfow/underflow +void threadStackOverflow (Capability *cap, StgTSO *tso); +nat threadStackUnderflow (Capability *cap, StgTSO *tso); + #ifdef DEBUG void printThreadBlockage (StgTSO *tso); void printThreadStatus (StgTSO *t); void printAllThreads (void); void printThreadQueue (StgTSO *t); -# if defined(PARALLEL_HASKELL) -void print_bq (StgClosure *node); -void print_bqe (StgBlockingQueueElement *bqe); -nat run_queue_len (void); -# elif defined(GRAN) -void print_bq (StgClosure *node); -# endif #endif +#include "EndPrivate.h" + #endif /* THREADS_H */