X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FTSO.h;h=692953651ab8bb18f808a7ff12cc4b90f91daeb3;hb=9a73dc386a8584bd7a4a3b721d077be474f6968d;hp=509e55f7841c1dd977017f13382b466a58116e69;hpb=5a4ec9379ff8e96ab7a75ea1854bf2005db01050;p=ghc-hetmet.git diff --git a/ghc/includes/TSO.h b/ghc/includes/TSO.h index 509e55f..6929536 100644 --- a/ghc/includes/TSO.h +++ b/ghc/includes/TSO.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: TSO.h,v 1.18 2000/08/25 13:12:07 simonmar Exp $ + * $Id: TSO.h,v 1.23 2001/08/29 17:24:25 qrczak Exp $ * * (c) The GHC Team, 1998-1999 * @@ -12,8 +12,7 @@ #if defined(GRAN) || defined(PAR) -#if DEBUG // && PARANOIA_LEVEL>999 -// magic marker for TSOs; debugging only +#if DEBUG #define TSO_MAGIC 4321 #endif @@ -53,6 +52,17 @@ typedef struct { } StgTSOParInfo; #endif /* PAR */ +#if defined(DIST) +typedef struct { + StgThreadPriority priority; + StgInt revalTid; /* ToDo: merge both into 1 word */ + StgInt revalSlot; +} StgTSODistInfo; +#else /* !DIST */ +typedef struct { +} StgTSODistInfo; +#endif /* DIST */ + #if defined(GRAN) typedef StgTSOStatBuf StgTSOGranInfo; #else /* !GRAN */ @@ -80,18 +90,14 @@ typedef enum { typedef enum { ThreadEnterGHC, /* enter top thunk on stack */ ThreadRunGHC, /* return to address on top of stack */ - ThreadEnterHugs, /* enter top thunk on stack (w/ interpreter) */ + ThreadEnterInterp, /* enter top thunk on stack (w/ interpreter) */ ThreadKilled, /* thread has died, don't run it */ ThreadRelocated, /* thread has moved, link points to new locn */ ThreadComplete /* thread has finished */ } StgTSOWhatNext; /* - * We are completely paranoid and make thread IDs 64 bits to avoid - * having to worry about overflow. A little calculation shows that - * even doing 10^6 forks per second would take 35 million years to - * overflow a 64 bit thread ID :-) - * + * Thread IDs are 32 bits. */ typedef StgWord32 StgThreadID; @@ -108,6 +114,16 @@ typedef enum { ThreadFinished } StgThreadReturnCode; +/* + * We distinguish between the various classes of threads in the system. + */ + +typedef enum { + AdvisoryPriority, + MandatoryPriority, + RevalPriority +} StgThreadPriority; + /* * Threads may be blocked for several reasons. A blocked thread will * have the reason in the why_blocked field of the TSO, and some @@ -164,14 +180,15 @@ typedef struct StgTSO_ { StgTSOProfInfo prof; StgTSOParInfo par; StgTSOGranInfo gran; - + StgTSODistInfo dist; + /* The thread stack... */ StgWord stack_size; /* stack size in *words* */ StgWord max_stack_size; /* maximum stack size in *words* */ StgPtr sp; StgUpdateFrame* su; - StgWord stack[0]; + StgWord stack[FLEXIBLE_ARRAY]; } StgTSO; /* ----------------------------------------------------------------------------- @@ -246,7 +263,7 @@ typedef struct StgTSO_ { extern StgTSO dummy_tso; #define TSO_STRUCT_SIZE \ - ((int)&(dummy_tso).stack - (int)&(dummy_tso).header) + ((char *)&dummy_tso.stack - (char *)&dummy_tso.header) #define TSO_STRUCT_SIZEW (TSO_STRUCT_SIZE / sizeof(W_))