summaryrefslogtreecommitdiff
path: root/rts/Threads.h
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2010-04-07 09:28:24 +0000
committerSimon Marlow <marlowsd@gmail.com>2010-04-07 09:28:24 +0000
commitef6e8211dee59eb7fa80a242391b89b52bd57f80 (patch)
tree18b374037dc19404142b97fdabd3baf4263edb1c /rts/Threads.h
parent2baf448a8bb8138c736c74ae40cafa4b09491fda (diff)
downloadhaskell-ef6e8211dee59eb7fa80a242391b89b52bd57f80.tar.gz
Fix for derefing ThreadRelocated TSOs in MVar operations
Diffstat (limited to 'rts/Threads.h')
-rw-r--r--rts/Threads.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/rts/Threads.h b/rts/Threads.h
index e3680f2d50..bf16dcdce3 100644
--- a/rts/Threads.h
+++ b/rts/Threads.h
@@ -21,6 +21,9 @@ 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).
//