From: sof Date: Tue, 23 Apr 2002 14:20:18 +0000 (+0000) Subject: [project @ 2002-04-23 14:20:18 by sof] X-Git-Tag: Approx_11550_changesets_converted~2112 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=95c578522ecaeb21e5e0a760eee90c1f3696b863;hp=65f4e29f4647ade0de464c4b29bf414fdb4abb8a;p=ghc-hetmet.git [project @ 2002-04-23 14:20:18 by sof] forkProcess() mingw unused arg tweak --- 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 */ }