From 5107d99f9d8a9e709b6b2605e4fd941eaaa66d12 Mon Sep 17 00:00:00 2001 From: sof Date: Wed, 13 Feb 2002 07:46:42 +0000 Subject: [PATCH] [project @ 2002-02-13 07:46:42 by sof] Add BlockedOnCCall to StgTSOBlockInfo enum --- ghc/includes/TSO.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc/includes/TSO.h b/ghc/includes/TSO.h index 6929536..57026cd 100644 --- a/ghc/includes/TSO.h +++ b/ghc/includes/TSO.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: TSO.h,v 1.23 2001/08/29 17:24:25 qrczak Exp $ + * $Id: TSO.h,v 1.24 2002/02/13 07:46:42 sof Exp $ * * (c) The GHC Team, 1998-1999 * @@ -144,6 +144,9 @@ typedef enum { , BlockedOnGA // blocked on a remote closure represented by a Global Address , BlockedOnGA_NoSend // same as above but without sending a Fetch message #endif +#if defined(RTS_SUPPORTS_THREADS) + , BlockedOnCCall +#endif } StgTSOBlockReason; typedef union { -- 1.7.10.4