diff options
author | Sergei Trofimovich <siarheit@google.com> | 2016-02-07 17:58:59 +0000 |
---|---|---|
committer | Sergei Trofimovich <siarheit@google.com> | 2016-02-07 20:27:49 +0000 |
commit | c358567b9c84ffe77b505d0043d405f14312a95f (patch) | |
tree | ce6260b9fecae4b194affb8f01046cdc3a9edea6 /rts | |
parent | a49c9d4ef61f4394b63b9a66b804054f03231c76 (diff) | |
download | haskell-c358567b9c84ffe77b505d0043d405f14312a95f.tar.gz |
rts: mark 'blockedThrowTo' as static
Noticed by uselex.rb:
blockedThrowTo: [R]: exported from:
./rts/dist/build/RaiseAsync.o
Signed-off-by: Sergei Trofimovich <siarheit@google.com>
Diffstat (limited to 'rts')
-rw-r--r-- | rts/RaiseAsync.c | 3 | ||||
-rw-r--r-- | rts/RaiseAsync.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/rts/RaiseAsync.c b/rts/RaiseAsync.c index 267707cefb..a0a81cf9ef 100644 --- a/rts/RaiseAsync.c +++ b/rts/RaiseAsync.c @@ -23,6 +23,9 @@ #include "win32/IOManager.h" #endif +static void blockedThrowTo (Capability *cap, + StgTSO *target, MessageThrowTo *msg); + static void removeFromQueues(Capability *cap, StgTSO *tso); static void removeFromMVarBlockedQueue (StgTSO *tso); diff --git a/rts/RaiseAsync.h b/rts/RaiseAsync.h index 1f939d4000..b5dba46c22 100644 --- a/rts/RaiseAsync.h +++ b/rts/RaiseAsync.h @@ -16,9 +16,6 @@ #include "BeginPrivate.h" -void blockedThrowTo (Capability *cap, - StgTSO *target, MessageThrowTo *msg); - StgTSO* raiseAsync (Capability *cap, StgTSO *tso, StgClosure *exception, |