X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=includes%2FConstants.h;h=f0f3ce70a27f18fcad44145bae42332bd6335c87;hb=bb7ffa1642e2110e26e1243c42a8a24adafa985d;hp=012acd197c58bba99d1cef967f0766dd4cbf5287;hpb=540311cfcf08b7184d7ab57245b18214bd4b9173;p=ghc-hetmet.git diff --git a/includes/Constants.h b/includes/Constants.h index 012acd1..f0f3ce7 100644 --- a/includes/Constants.h +++ b/includes/Constants.h @@ -118,6 +118,13 @@ #define RESERVED_STACK_WORDS 21 /* ----------------------------------------------------------------------------- + The limit on the size of the stack check performed when we enter an + AP_STACK, in words. See raiseAsync() and bug #1466. + -------------------------------------------------------------------------- */ + +#define AP_STACK_SPLIM 1024 + +/* ----------------------------------------------------------------------------- Storage manager constants -------------------------------------------------------------------------- */ @@ -186,6 +193,7 @@ /* * Constants for the why_blocked field of a TSO + * NB. keep these in sync with GHC/Conc.lhs: threadStatus */ #define NotBlocked 0 #define BlockedOnMVar 1 @@ -253,6 +261,11 @@ #define TSO_INTERRUPTIBLE 8 #define TSO_STOPPED_ON_BREAKPOINT 16 +/* + * TSO_LINK_DIRTY is set when a TSO's link field is modified + */ +#define TSO_LINK_DIRTY 32 + /* ----------------------------------------------------------------------------- RET_DYN stack frames -------------------------------------------------------------------------- */