diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-02-27 14:44:45 +0000 |
---|---|---|
committer | Sergei Trofimovich <siarheit@google.com> | 2016-02-27 14:44:53 +0000 |
commit | 3ee4fc04322dacb66c70262a220dce0f52c29d4f (patch) | |
tree | effb2c8d38973712d2bc04f149cb5e1651f0062c /rts/Schedule.h | |
parent | 890e2bb72b9953ca3e6990911b4cf6e51a0dd0f8 (diff) | |
download | haskell-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.h | 1 |
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; |