diff options
author | andy <unknown> | 2000-03-20 04:26:24 +0000 |
---|---|---|
committer | andy <unknown> | 2000-03-20 04:26:24 +0000 |
commit | b32b2d43b67c42f45105df40ae8af42eeb58078f (patch) | |
tree | f927f48c97a1235487b8592b391c3aba97737c67 /ghc/includes/options.h | |
parent | e1d3748d9a5aa116c6ebdc17f2c7af82f164e3a8 (diff) | |
download | haskell-b32b2d43b67c42f45105df40ae8af42eeb58078f.tar.gz |
[project @ 2000-03-20 04:26:23 by andy]
Second attack at supporting threads inside STG Hugs.
We now support most of the concurrency primitives.
Also a wibble in Evaluator.c, letting Hugs compile.
Diffstat (limited to 'ghc/includes/options.h')
-rw-r--r-- | ghc/includes/options.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/ghc/includes/options.h b/ghc/includes/options.h index 4b4829421c..61c01c400b 100644 --- a/ghc/includes/options.h +++ b/ghc/includes/options.h @@ -7,8 +7,8 @@ * Hugs version 1.4, December 1997 * * $RCSfile: options.h,v $ - * $Revision: 1.22 $ - * $Date: 2000/03/10 18:28:26 $ + * $Revision: 1.23 $ + * $Date: 2000/03/20 04:26:24 $ * ------------------------------------------------------------------------*/ @@ -158,15 +158,13 @@ * without attention. However, standard Haskell 98 is supported * is supported without needing them. */ -#undef PROVIDE_STABLE -#undef PROVIDE_FOREIGN #undef PROVIDE_WEAK -#undef PROVIDE_CONCURRENT -#undef PROVIDE_PTREQUALITY -#undef PROVIDE_COERCE -#define PROVIDE_COERCE 1 +#define PROVIDE_STABLE 1 +#define PROVIDE_FOREIGN 1 +#define PROVIDE_COERCE 1 #define PROVIDE_PTREQUALITY 1 +#define PROVIDE_CONCURRENT 1 /* Enable a crude profiler which counts BCO entries, bytes allocated and bytecode insns executed on a per-fn basis. Used for assessing |