From c9bb9c464e9f1ab778db936cd389e5ab3550da43 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 3 Dec 2010 09:48:40 +0000 Subject: [PATCH] throwTo: report the why_blocked value in the barf() --- rts/RaiseAsync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/RaiseAsync.c b/rts/RaiseAsync.c index 3cfb450..7abccde 100644 --- a/rts/RaiseAsync.c +++ b/rts/RaiseAsync.c @@ -449,7 +449,7 @@ check_target: goto retry; default: - barf("throwTo: unrecognised why_blocked value"); + barf("throwTo: unrecognised why_blocked (%d)", target->why_blocked); } barf("throwTo"); } -- 1.7.10.4