From 95c578522ecaeb21e5e0a760eee90c1f3696b863 Mon Sep 17 00:00:00 2001 From: sof Date: Tue, 23 Apr 2002 14:20:18 +0000 Subject: [PATCH 1/1] [project @ 2002-04-23 14:20:18 by sof] forkProcess() mingw unused arg tweak --- ghc/rts/Schedule.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ghc/rts/Schedule.c b/ghc/rts/Schedule.c index 72229d4..9d816b0 100644 --- a/ghc/rts/Schedule.c +++ b/ghc/rts/Schedule.c @@ -1,5 +1,5 @@ /* --------------------------------------------------------------------------- - * $Id: Schedule.c,v 1.139 2002/04/23 09:56:28 stolz Exp $ + * $Id: Schedule.c,v 1.140 2002/04/23 14:20:18 sof Exp $ * * (c) The GHC Team, 1998-2000 * @@ -1445,7 +1445,8 @@ StgInt forkProcess(StgTSO* tso) { } return pid; #else /* mingw32 */ - barf("forkProcess#: primop not implemented for mingw32, sorry!"); + barf("forkProcess#: primop not implemented for mingw32, sorry! (%u)\n", tso->id); + /* pointlessly printing out the TSOs 'id' to avoid CC unused warning. */ return -1; #endif /* mingw32 */ } -- 1.7.10.4