X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FRts.h;h=3ca0d9a9130d32cc826ad768bddbd13677a34fc4;hb=7f24ae51ed36c5c0308a2d0de23e243f32a0043c;hp=4a60688e61390b69210f449555ba8c8b8f842f52;hpb=dcf58a64367700d80dc7609b1b55ff6a8e8b97ee;p=ghc-hetmet.git diff --git a/ghc/includes/Rts.h b/ghc/includes/Rts.h index 4a60688..3ca0d9a 100644 --- a/ghc/includes/Rts.h +++ b/ghc/includes/Rts.h @@ -29,43 +29,11 @@ extern "C" { #define FLEXIBLE_ARRAY 0 #endif -#if defined(SMP) || defined(THREADED_RTS) -#define RTS_SUPPORTS_THREADS 1 -#endif - /* Fix for mingw stat problem (done here so it's early enough) */ -#ifdef mingw32_TARGET_OS +#ifdef mingw32_HOST_OS #define __MSVCRT__ 1 #endif -#if defined(__GNUC__) -#define GNU_ATTRIBUTE(at) __attribute__((at)) -#else -#define GNU_ATTRIBUTE(at) -#endif - -#if __GNUC__ >= 3 -#define GNUC3_ATTRIBUTE(at) __attribute__((at)) -#else -#define GNUC3_ATTRIBUTE(at) -#endif - -#define STG_UNUSED GNUC3_ATTRIBUTE(__unused__) - -/* - * Empty structures isn't supported by all, so to define - * empty structures, please protect the defn with an - * #if SUPPORTS_EMPTY_STRUCTS. Similarly for use, - * employ the macro MAYBE_EMPTY_STRUCT(): - * - * MAYBE_EMPTY_STRUCT(structFoo, fieldName); - */ -#if SUPPORTS_EMPTY_STRUCTS -# define MAYBE_EMPTY_STRUCT(a,b) a b; -#else -# define MAYBE_EMPTY_STRUCT(a,b) /* empty */ -#endif - /* * We often want to know the size of something in units of an * StgWord... (rounded up, of course!) @@ -85,13 +53,13 @@ extern "C" { #define ASSERT(predicate) /* nothing */ #else -void _stgAssert (char *, unsigned int); +extern void _assertFail (char *, unsigned int); #define ASSERT(predicate) \ if (predicate) \ /*null*/; \ else \ - _stgAssert(__FILE__, __LINE__) + _assertFail(__FILE__, __LINE__) #endif /* DEBUG */ /* @@ -102,6 +70,22 @@ void _stgAssert (char *, unsigned int); #define doNothing() do { } while (0) +#ifdef DEBUG +#define USED_IF_DEBUG +#define USED_IF_NOT_DEBUG STG_UNUSED +#else +#define USED_IF_DEBUG STG_UNUSED +#define USED_IF_NOT_DEBUG +#endif + +#ifdef THREADED_RTS +#define USED_IF_THREADS +#define USED_IF_NOT_THREADS STG_UNUSED +#else +#define USED_IF_THREADS STG_UNUSED +#define USED_IF_NOT_THREADS +#endif + /* ----------------------------------------------------------------------------- Include everything STG-ish -------------------------------------------------------------------------- */ @@ -136,15 +120,12 @@ void _stgAssert (char *, unsigned int); /* Parallel information */ #include "Parallel.h" +#include "OSThreads.h" +#include "SMP.h" /* STG/Optimised-C related stuff */ -#include "SMP.h" #include "Block.h" -#ifdef SMP -#include -#endif - /* GNU mp library */ #include "gmp.h" @@ -198,14 +179,6 @@ extern void stg_exit(int n) GNU_ATTRIBUTE(__noreturn__); /* declarations for runtime flags/values */ #define MAX_RTS_ARGS 32 -#ifdef _WIN32 -/* On the yucky side..suppress -Wmissing-declarations warnings when - * including - */ -extern void* GetCurrentFiber ( void ); -extern void* GetFiberData ( void ); -#endif - /* ----------------------------------------------------------------------------- Assertions and Debuggery -------------------------------------------------------------------------- */