update submodules for GHC.HetMet.GArrow -> Control.GArrow renaming
[ghc-hetmet.git] / includes / RtsOpts.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 2010
4  *
5  * En/disable RTS options
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef RTSOPTS_H
10 #define RTSOPTS_H
11
12 typedef enum {
13     RtsOptsNone,         // +RTS causes an error
14     RtsOptsSafeOnly,     // safe RTS options allowed; others cause an error
15     RtsOptsAll           // all RTS options allowed
16   } RtsOptsEnabledEnum;
17
18 extern const RtsOptsEnabledEnum rtsOptsEnabled;
19
20 #endif /* RTSOPTS_H */