[project @ 2002-04-10 11:43:43 by stolz]
[ghc-hetmet.git] / ghc / includes / TSO.h
index 6929536..06e8636 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.26 2002/04/10 11:43:44 stolz 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 {
@@ -175,6 +178,9 @@ typedef struct StgTSO_ {
   StgTSOBlockInfo    block_info;
   struct StgTSO_*    blocked_exceptions;
   StgThreadID        id;
+#ifdef DEBUG
+  char*              label;
+#endif
 
   StgTSOTickyInfo    ticky; 
   StgTSOProfInfo     prof;