[project @ 2002-02-13 07:46:42 by sof]
authorsof <unknown>
Wed, 13 Feb 2002 07:46:42 +0000 (07:46 +0000)
committersof <unknown>
Wed, 13 Feb 2002 07:46:42 +0000 (07:46 +0000)
Add BlockedOnCCall to StgTSOBlockInfo enum

ghc/includes/TSO.h

index 6929536..57026cd 100644 (file)
@@ -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 {