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 /includes/stg | |
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 'includes/stg')
-rw-r--r-- | includes/stg/MiscClosures.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/includes/stg/MiscClosures.h b/includes/stg/MiscClosures.h index dff129b948..5f5e0d6a1d 100644 --- a/includes/stg/MiscClosures.h +++ b/includes/stg/MiscClosures.h @@ -462,7 +462,6 @@ extern StgWord rts_breakpoint_io_action[]; // Schedule.c extern StgWord RTS_VAR(blocked_queue_hd), RTS_VAR(blocked_queue_tl); extern StgWord RTS_VAR(sleeping_queue); -extern StgWord RTS_VAR(blackhole_queue); extern StgWord RTS_VAR(sched_mutex); // Apply.cmm |