fix haddock submodule pointer
[ghc-hetmet.git] / rts / Threads.h
index bf16dcd..857658a 100644 (file)
@@ -9,7 +9,7 @@
 #ifndef THREADS_H
 #define THREADS_H
 
-BEGIN_RTS_PRIVATE
+#include "BeginPrivate.h"
 
 #define END_BLOCKED_EXCEPTIONS_QUEUE ((MessageThrowTo*)END_TSO_QUEUE)
 
@@ -21,9 +21,6 @@ void wakeBlockingQueue   (Capability *cap, StgBlockingQueue *bq);
 void tryWakeupThread     (Capability *cap, StgTSO *tso);
 void migrateThread       (Capability *from, StgTSO *tso, Capability *to);
 
-// like tryWakeupThread(), but assumes the TSO is not ThreadRelocated
-void tryWakeupThread_    (Capability *cap, StgTSO *tso);
-
 // Wakes up a thread on a Capability (probably a different Capability
 // from the one held by the current Task).
 //
@@ -41,6 +38,10 @@ rtsBool removeThreadFromDeQueue   (Capability *cap, StgTSO **head, StgTSO **tail
 
 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);
@@ -48,6 +49,6 @@ void printAllThreads (void);
 void printThreadQueue (StgTSO *t);
 #endif
 
-END_RTS_PRIVATE
+#include "EndPrivate.h"
 
 #endif /* THREADS_H */