summaryrefslogtreecommitdiff
path: root/rts/Schedule.h
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2016-02-27 14:44:45 +0000
committerSergei Trofimovich <siarheit@google.com>2016-02-27 14:44:53 +0000
commit3ee4fc04322dacb66c70262a220dce0f52c29d4f (patch)
treeeffb2c8d38973712d2bc04f149cb5e1651f0062c /rts/Schedule.h
parent890e2bb72b9953ca3e6990911b4cf6e51a0dd0f8 (diff)
downloadhaskell-3ee4fc04322dacb66c70262a220dce0f52c29d4f.tar.gz
rts: drop unused global 'blackhole_queue'
Commit 5d52d9b64c21dcf77849866584744722f8121389 removed global 'blackhole_queue' in favour of new mechanism: when TSO hits blackhole TSO blocks waiting for 'MessgaeBlackhole' delivery. Patch removed unused global and updates stale comments. Noticed by Yuras Shumovich. Signed-off-by: Sergei Trofimovich <siarheit@google.com> Test Plan: build test Reviewers: simonmar, austin, Yuras, bgamari Reviewed By: Yuras, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1953
Diffstat (limited to 'rts/Schedule.h')
-rw-r--r--rts/Schedule.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/rts/Schedule.h b/rts/Schedule.h
index 67e2fdc011..b6fbed48e3 100644
--- a/rts/Schedule.h
+++ b/rts/Schedule.h
@@ -97,7 +97,6 @@ extern volatile StgWord recent_activity;
/* Thread queues.
* Locks required : sched_mutex
*/
-extern StgTSO *blackhole_queue;
#if !defined(THREADED_RTS)
extern StgTSO *blocked_queue_hd, *blocked_queue_tl;
extern StgTSO *sleeping_queue;