summaryrefslogtreecommitdiff
path: root/rts/Schedule.h
diff options
context:
space:
mode:
authorSergei Trofimovich <siarheit@google.com>2016-02-07 17:33:02 +0000
committerSergei Trofimovich <siarheit@google.com>2016-02-07 20:27:27 +0000
commit39cba209ac99c94ec6cdbc880d475e606eb8c5da (patch)
tree8dd258fd874a9c7f159272b5b27ebd54a9b67003 /rts/Schedule.h
parent8abc7e76ecd9bdd31ace27ed24b3d42522d2f189 (diff)
downloadhaskell-39cba209ac99c94ec6cdbc880d475e606eb8c5da.tar.gz
rts: mark 'removeFromRunQueue' as static
Noticed by uselex.rb: removeFromRunQueue: [R]: exported from: ./rts/dist/build/Schedule.o Signed-off-by: Sergei Trofimovich <siarheit@google.com>
Diffstat (limited to 'rts/Schedule.h')
-rw-r--r--rts/Schedule.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/rts/Schedule.h b/rts/Schedule.h
index eb5135b365..67e2fdc011 100644
--- a/rts/Schedule.h
+++ b/rts/Schedule.h
@@ -187,8 +187,7 @@ peekRunQueue (Capability *cap)
return cap->run_queue_hd;
}
-void removeFromRunQueue (Capability *cap, StgTSO *tso);
-extern void promoteInRunQueue (Capability *cap, StgTSO *tso);
+void promoteInRunQueue (Capability *cap, StgTSO *tso);
/* Add a thread to the end of the blocked queue.
*/