X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FRaiseAsync.h;h=336ab30e33adb52edf14b03c0c5ef21b9ffc5a77;hb=7d9eb2e45b4a9ff4cb053b1ec37602be88528b62;hp=6f7c305d54145da5e54774e1cf6759eedd0b73fd;hpb=0fa59deb44b8a1a0b44ee2b4cc4ae0db31dec038;p=ghc-hetmet.git diff --git a/rts/RaiseAsync.h b/rts/RaiseAsync.h index 6f7c305..336ab30 100644 --- a/rts/RaiseAsync.h +++ b/rts/RaiseAsync.h @@ -13,6 +13,9 @@ #define THROWTO_BLOCKED 1 #ifndef CMINUSMINUS + +#include "BeginPrivate.h" + void throwToSingleThreaded (Capability *cap, StgTSO *tso, StgClosure *exception); @@ -26,16 +29,13 @@ void suspendComputation (Capability *cap, StgTSO *tso, StgUpdateFrame *stop_here); -nat throwTo (Capability *cap, // the Capability we hold - StgTSO *source, // the TSO sending the exception - StgTSO *target, // the TSO receiving the exception - StgClosure *exception, // the exception closure - /*[out]*/ void **out // pass to throwToReleaseTarget() - ); +MessageThrowTo *throwTo (Capability *cap, // the Capability we hold + StgTSO *source, + StgTSO *target, + StgClosure *exception); // the exception closure -#ifdef THREADED_RTS -void throwToReleaseTarget (void *tso); -#endif +nat throwToMsg (Capability *cap, + MessageThrowTo *msg); int maybePerformBlockedException (Capability *cap, StgTSO *tso); void awakenBlockedExceptionQueue (Capability *cap, StgTSO *tso); @@ -49,7 +49,7 @@ interruptible(StgTSO *t) { switch (t->why_blocked) { case BlockedOnMVar: - case BlockedOnException: + case BlockedOnMsgThrowTo: case BlockedOnRead: case BlockedOnWrite: #if defined(mingw32_HOST_OS) @@ -64,6 +64,8 @@ interruptible(StgTSO *t) } } +#include "EndPrivate.h" + #endif /* CMINUSMINUS */ #endif /* RAISEASYNC_H */