X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=includes%2Frts%2FConstants.h;h=140aaa4210bd126c3ffaf1df8ea95bcfd14da34d;hp=82f3bdd74d67b6bf59a2a87fcace53b3e479f986;hb=83d563cb9ede0ba792836e529b1e2929db926355;hpb=69ba3e6bbae81ce02f6ea66d0686667b7dfb7e8f diff --git a/includes/rts/Constants.h b/includes/rts/Constants.h index 82f3bdd..140aaa4 100644 --- a/includes/rts/Constants.h +++ b/includes/rts/Constants.h @@ -66,6 +66,13 @@ #define MAX_CHARLIKE 255 #define MIN_CHARLIKE 0 +/* Each byte in the card table for an StgMutaArrPtrs covers + * (1<msg_cap */ +#define BlockedOnMsgThrowTo 12 + +/* The thread is not on any run queues, but can be woken up + by tryWakeupThread() */ +#define ThreadMigrating 13 /* * These constants are returned to the scheduler by a thread that has @@ -263,6 +276,13 @@ */ #define TSO_MARKED 64 +/* + * Used to communicate between stackSqueeze() and + * threadStackOverflow() that a thread's stack was squeezed and the + * stack may not need to be expanded. + */ +#define TSO_SQUEEZED 128 + /* ----------------------------------------------------------------------------- RET_DYN stack frames -------------------------------------------------------------------------- */ @@ -282,4 +302,13 @@ #error RESERVED_STACK_WORDS may be wrong! #endif +/* + * The number of times we spin in a spin lock before yielding (see + * #3758). To tune this value, use the benchmark in #3758: run the + * server with -N2 and the client both on a dual-core. Also make sure + * that the chosen value doesn't slow down any of the parallel + * benchmarks in nofib/parallel. + */ +#define SPIN_COUNT 1000 + #endif /* RTS_CONSTANTS_H */