diff options
author | Simon Marlow <marlowsd@gmail.com> | 2011-11-14 15:13:33 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2011-11-14 15:14:09 +0000 |
commit | e37893cbe8c289dc56cecf6dff5c8b64ed8c3485 (patch) | |
tree | ee691b3bb6a667e865321f779fa48cc92dc504ba /rts/RaiseAsync.c | |
parent | 66962374847686e84692ce319a1427e96ac8440c (diff) | |
download | haskell-e37893cbe8c289dc56cecf6dff5c8b64ed8c3485.tar.gz |
+RTS -xc: print a the closure type of the exception too
Diffstat (limited to 'rts/RaiseAsync.c')
-rw-r--r-- | rts/RaiseAsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RaiseAsync.c b/rts/RaiseAsync.c index acc87b1938..c7b10b856e 100644 --- a/rts/RaiseAsync.c +++ b/rts/RaiseAsync.c @@ -739,7 +739,7 @@ raiseAsync(Capability *cap, StgTSO *tso, StgClosure *exception, */ if (RtsFlags.ProfFlags.showCCSOnException) { - fprintCCS_stderr(tso->prof.CCCS,tso); + fprintCCS_stderr(tso->prof.CCCS,exception,tso); } #endif // ASSUMES: the thread is not already complete or dead |