X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FRts.h;h=2fa85914df1d6fbc2bf1602002b342e2f6d8417e;hb=b70b5550a9c2825bbca73e00c2cd249f85df8521;hp=dd233886e0c5fed0a387d480a66486376ef77d18;hpb=f6692611aad945e46ffb615bde1df7def3fc742f;p=ghc-hetmet.git diff --git a/ghc/includes/Rts.h b/ghc/includes/Rts.h index dd23388..2fa8591 100644 --- a/ghc/includes/Rts.h +++ b/ghc/includes/Rts.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Rts.h,v 1.8 1999/11/02 15:05:52 simonmar Exp $ + * $Id: Rts.h,v 1.13 2000/04/05 14:26:31 panne Exp $ * * (c) The GHC Team, 1998-1999 * @@ -11,12 +11,12 @@ #define RTS_H #ifndef IN_STG_CODE -#define NOT_IN_STG_CODE +#define IN_STG_CODE 0 #endif #include "Stg.h" /* ----------------------------------------------------------------------------- - Miscellaneous garbage + RTS Exit codes -------------------------------------------------------------------------- */ #if ! defined(EXIT_SUCCESS) || ! defined(EXIT_FAILURE) @@ -27,30 +27,46 @@ #define EXIT_FAILURE 1 #endif +/* 255 is allegedly used by dynamic linkers to report linking failure */ +#define EXIT_INTERNAL_ERROR 254 +#define EXIT_DEADLOCK 253 +#define EXIT_INTERRUPTED 252 +#define EXIT_HEAPOVERFLOW 251 +#define EXIT_KILLED 250 + +/* ----------------------------------------------------------------------------- + Miscellaneous garbage + -------------------------------------------------------------------------- */ + /* declarations for runtime flags/values */ #define MAX_RTS_ARGS 32 /* ----------------------------------------------------------------------------- - Useful typedefs + Assertions and Debuggery -------------------------------------------------------------------------- */ -typedef unsigned int nat; /* at least 32 bits (like int) */ -typedef unsigned long lnat; /* at least 32 bits */ -typedef unsigned long long ullong; /* at least 32 bits */ - -typedef enum { - rtsFalse = 0, - rtsTrue -} rtsBool; +#define IF_RTSFLAGS(c,s) if (RtsFlags.c) { s; } /* ----------------------------------------------------------------------------- Assertions and Debuggery -------------------------------------------------------------------------- */ -#ifndef DEBUG +#ifdef DEBUG +#define IF_DEBUG(c,s) if (RtsFlags.DebugFlags.c) { s; } +#else #define IF_DEBUG(c,s) doNothing() +#endif + +#if defined(GRAN) && defined(DEBUG) +#define IF_GRAN_DEBUG(c,s) if (RtsFlags.GranFlags.Debug.c) { s; } #else -#define IF_DEBUG(c,s) if (RtsFlags.DebugFlags.c) { s; } +#define IF_GRAN_DEBUG(c,s) doNothing() +#endif + +#if defined(PAR) && defined(DEBUG) +#define IF_PAR_DEBUG(c,s) if (RtsFlags.ParFlags.Debug.c) { s; } +#else +#define IF_PAR_DEBUG(c,s) doNothing() #endif /* ----------------------------------------------------------------------------- @@ -85,4 +101,4 @@ typedef enum { #define stg_min(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _a : _b; }) #define stg_max(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _b : _a; }) -#endif RTS_H +#endif /* RTS_H */