GHC.RTS.Flags (original) (raw)

Description

Accessors to GHC RTS flags. Descriptions of flags can be seen inGHC User's Guide, or by running RTS help message using +RTS --help.

Since: base-4.8.0.0

Synopsis

Documentation

data RTSFlags Source #

Parameters of the runtime system

Since: base-4.8.0.0

data GiveGCStats Source #

Should we produce a summary of the garbage collector statistics after the program has exited?

Since: base-4.8.2.0

data ConcFlags Source #

Parameters concerning context switching

Since: base-4.8.0.0

data CCFlags Source #

Parameters pertaining to the cost-center profiler.

Since: base-4.8.0.0

data TickyFlags Source #

Parameters pertaining to ticky-ticky profiler

Since: base-4.8.0.0

data ParFlags Source #

Parameters pertaining to parallelism

Since: base-4.8.0.0

data IoSubSystem Source #

The I/O SubSystem to use in the program.

Since: base-4.9.0.0

Constructors

IoPOSIX Use a POSIX I/O Sub-System
IoNative Use platform native Sub-System. For unix OSes this is the same as IoPOSIX, but on Windows this means use the Windows native APIs for I/O, including IOCP and RIO.