X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=includes%2FTSO.h;h=c6ec6697d4c561d5bd414556115b76e33a64bdd5;hb=dbc1ed7e054a1c67cd34ff4776feea0d176e3bbb;hp=3f7923d5daf50038832c572a3e699c149bc650a3;hpb=69d5d3266dab36d9bfbe7da8ca9e077619516809;p=ghc-hetmet.git diff --git a/includes/TSO.h b/includes/TSO.h index 3f7923d..c6ec669 100644 --- a/includes/TSO.h +++ b/includes/TSO.h @@ -124,7 +124,21 @@ typedef union { typedef struct StgTSO_ { StgHeader header; - struct StgTSO_* link; /* Links threads onto blocking queues */ + /* The link field, for linking threads together in lists (e.g. the + run queue on a Capability. + */ + struct StgTSO_* _link; + /* + NOTE!!! do not modify _link directly, it is subject to + a write barrier for generational GC. Instead use the + setTSOLink() function. Exceptions to this rule are: + + * setting the link field to END_TSO_QUEUE + * putting a TSO on the blackhole_queue + * setting the link field of the currently running TSO, as it + will already be dirty. + */ + struct StgTSO_* global_link; /* Links all threads together */ StgWord16 what_next; /* Values defined in Constants.h */ @@ -159,6 +173,9 @@ typedef struct StgTSO_ { #ifdef DIST StgTSODistInfo dist; #endif +#ifdef mingw32_HOST_OS + StgWord32 saved_winerror; +#endif /* The thread stack... */ StgWord32 stack_size; /* stack size in *words* */ @@ -169,6 +186,13 @@ typedef struct StgTSO_ { } StgTSO; /* ----------------------------------------------------------------------------- + functions + -------------------------------------------------------------------------- */ + +extern void dirty_TSO (Capability *cap, StgTSO *tso); +extern void setTSOLink (Capability *cap, StgTSO *tso, StgTSO *target); + +/* ----------------------------------------------------------------------------- Invariants: An active thread has the following properties: