diff options
author | Austin Seipp <austin@well-typed.com> | 2014-10-21 16:32:20 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-10-21 16:32:20 -0500 |
commit | aa8d23d24d6777c2881b89928776cce2e51a631f (patch) | |
tree | c9a3ae850585c65cee7c44f7051e85f14bb7c112 | |
parent | 4faeecb67aabba34d07793d9f39134c9d4fb6639 (diff) | |
download | haskell-aa8d23d24d6777c2881b89928776cce2e51a631f.tar.gz |
[skip ci] rts: Detabify RaiseAsync.h
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r-- | rts/RaiseAsync.h | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/rts/RaiseAsync.h b/rts/RaiseAsync.h index 3da9e7bc09..e2763d0cb8 100644 --- a/rts/RaiseAsync.h +++ b/rts/RaiseAsync.h @@ -16,23 +16,23 @@ #include "BeginPrivate.h" -void blockedThrowTo (Capability *cap, +void blockedThrowTo (Capability *cap, StgTSO *target, MessageThrowTo *msg); void throwToSingleThreaded (Capability *cap, - StgTSO *tso, - StgClosure *exception); + StgTSO *tso, + StgClosure *exception); -void throwToSingleThreaded_ (Capability *cap, - StgTSO *tso, - StgClosure *exception, - rtsBool stop_at_atomically); +void throwToSingleThreaded_ (Capability *cap, + StgTSO *tso, + StgClosure *exception, + rtsBool stop_at_atomically); -void suspendComputation (Capability *cap, - StgTSO *tso, - StgUpdateFrame *stop_here); +void suspendComputation (Capability *cap, + StgTSO *tso, + StgUpdateFrame *stop_here); -MessageThrowTo *throwTo (Capability *cap, // the Capability we hold +MessageThrowTo *throwTo (Capability *cap, // the Capability we hold StgTSO *source, StgTSO *target, StgClosure *exception); // the exception closure @@ -74,4 +74,3 @@ interruptible(StgTSO *t) #endif /* CMINUSMINUS */ #endif /* RAISEASYNC_H */ - |