X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=includes%2Frts%2FConstants.h;h=a4114ab999a0175beb16927ce97d717768f0e37e;hb=HEAD;hp=140aaa4210bd126c3ffaf1df8ea95bcfd14da34d;hpb=83d563cb9ede0ba792836e529b1e2929db926355;p=ghc-hetmet.git diff --git a/includes/rts/Constants.h b/includes/rts/Constants.h index 140aaa4..a4114ab 100644 --- a/includes/rts/Constants.h +++ b/includes/rts/Constants.h @@ -198,8 +198,7 @@ #define ThreadRunGHC 1 /* return to address on top of stack */ #define ThreadInterpret 2 /* interpret this thread */ #define ThreadKilled 3 /* thread has died, don't run it */ -#define ThreadRelocated 4 /* thread has moved, link points to new locn */ -#define ThreadComplete 5 /* thread has finished */ +#define ThreadComplete 4 /* thread has finished */ /* * Constants for the why_blocked field of a TSO @@ -266,11 +265,6 @@ #define TSO_STOPPED_ON_BREAKPOINT 16 /* - * TSO_LINK_DIRTY is set when a TSO's link field is modified - */ -#define TSO_LINK_DIRTY 32 - -/* * Used by the sanity checker to check whether TSOs are on the correct * mutable list. */ @@ -311,4 +305,13 @@ */ #define SPIN_COUNT 1000 +/* ----------------------------------------------------------------------------- + Spare workers per Capability in the threaded RTS + + No more than MAX_SPARE_WORKERS will be kept in the thread pool + associated with each Capability. + -------------------------------------------------------------------------- */ + +#define MAX_SPARE_WORKERS 6 + #endif /* RTS_CONSTANTS_H */