diff options
author | Sergei Trofimovich <siarheit@google.com> | 2016-02-07 17:14:37 +0000 |
---|---|---|
committer | Sergei Trofimovich <siarheit@google.com> | 2016-02-07 20:27:17 +0000 |
commit | 3dbd836ea2e9ddf417ed473bcff98fe29e40395a (patch) | |
tree | b413b7340defd5270ac56dd55e40284a30bac0b7 /rts/Threads.h | |
parent | 256c1b3922ffed686e80c051d3d59ed8581993be (diff) | |
download | haskell-3dbd836ea2e9ddf417ed473bcff98fe29e40395a.tar.gz |
rts: mark 'wakeBlockingQueue' as static
Noticed by uselex.rb:
wakeBlockingQueue: [R]: exported from:
./rts/dist/build/Threads.o
Signed-off-by: Sergei Trofimovich <siarheit@google.com>
Diffstat (limited to 'rts/Threads.h')
-rw-r--r-- | rts/Threads.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rts/Threads.h b/rts/Threads.h index 6d26610334..01c493e53d 100644 --- a/rts/Threads.h +++ b/rts/Threads.h @@ -17,7 +17,6 @@ StgTSO * unblockOne (Capability *cap, StgTSO *tso); StgTSO * unblockOne_ (Capability *cap, StgTSO *tso, rtsBool allow_migrate); void checkBlockingQueues (Capability *cap, StgTSO *tso); -void wakeBlockingQueue (Capability *cap, StgBlockingQueue *bq); void tryWakeupThread (Capability *cap, StgTSO *tso); void migrateThread (Capability *from, StgTSO *tso, Capability *to); |