Safe Haskell | None |
---|---|
Language | Haskell2010 |
Accessors to GHC RTS flags.
Descriptions of flags can be seen in
GHC User's Guide,
or by running RTS help message using +RTS --help
.
Since: 4.8.0.0
- type RtsTime = Word64
- data RTSFlags = RTSFlags {}
- data GiveGCStats
- data GCFlags = GCFlags {
- statsFile :: Maybe FilePath
- giveStats :: GiveGCStats
- maxStkSize :: Word32
- initialStkSize :: Word32
- stkChunkSize :: Word32
- stkChunkBufferSize :: Word32
- maxHeapSize :: Word32
- minAllocAreaSize :: Word32
- largeAllocLim :: Word32
- nurseryChunkSize :: Word32
- minOldGenSize :: Word32
- heapSizeSuggestion :: Word32
- heapSizeSuggestionAuto :: Bool
- oldGenFactor :: Double
- pcFreeHeap :: Double
- generations :: Word32
- squeezeUpdFrames :: Bool
- compact :: Bool
- compactThreshold :: Double
- sweep :: Bool
- ringBell :: Bool
- idleGCDelayTime :: RtsTime
- doIdleGC :: Bool
- heapBase :: Word
- allocLimitGrace :: Word
- numa :: Bool
- numaMask :: Word
- data ConcFlags = ConcFlags {}
- data MiscFlags = MiscFlags {}
- data DebugFlags = DebugFlags {}
- data DoCostCentres
- data CCFlags = CCFlags {}
- data DoHeapProfile
- data ProfFlags = ProfFlags {
- doHeapProfile :: DoHeapProfile
- heapProfileInterval :: RtsTime
- heapProfileIntervalTicks :: Word
- includeTSOs :: Bool
- showCCSOnException :: Bool
- maxRetainerSetSize :: Word
- ccsLength :: Word
- modSelector :: Maybe String
- descrSelector :: Maybe String
- typeSelector :: Maybe String
- ccSelector :: Maybe String
- ccsSelector :: Maybe String
- retainerSelector :: Maybe String
- bioSelector :: Maybe String
- data DoTrace
- data TraceFlags = TraceFlags {
- tracing :: DoTrace
- timestamp :: Bool
- traceScheduler :: Bool
- traceGc :: Bool
- sparksSampled :: Bool
- sparksFull :: Bool
- user :: Bool
- data TickyFlags = TickyFlags {}
- data ParFlags = ParFlags {}
- getRTSFlags :: IO RTSFlags
- getGCFlags :: IO GCFlags
- getConcFlags :: IO ConcFlags
- getMiscFlags :: IO MiscFlags
- getDebugFlags :: IO DebugFlags
- getCCFlags :: IO CCFlags
- getProfFlags :: IO ProfFlags
- getTraceFlags :: IO TraceFlags
- getTickyFlags :: IO TickyFlags
- getParFlags :: IO ParFlags
Documentation
Parameters of the runtime system
Since: 4.8.0.0
data GiveGCStats Source #
Should we produce a summary of the garbage collector statistics after the program has exited?
Since: 4.8.2.0
Enum GiveGCStats # | Since: 4.8.0.0 |
Show GiveGCStats # | |
Parameters of the garbage collector.
Since: 4.8.0.0
GCFlags | |
|
Parameters concerning context switching
Since: 4.8.0.0
Miscellaneous parameters
Since: 4.8.0.0
MiscFlags | |
|
data DebugFlags Source #
Flags to control debugging output & extra checking in various subsystems.
Since: 4.8.0.0
data DoCostCentres Source #
Should the RTS produce a cost-center summary?
Since: 4.8.2.0
Enum DoCostCentres # | Since: 4.8.0.0 |
Show DoCostCentres # | |
Parameters pertaining to the cost-center profiler.
Since: 4.8.0.0
data DoHeapProfile Source #
What sort of heap profile are we collecting?
Since: 4.8.2.0
NoHeapProfiling | |
HeapByCCS | |
HeapByMod | |
HeapByDescr | |
HeapByType | |
HeapByRetainer | |
HeapByLDV | |
HeapByClosureType |
Enum DoHeapProfile # | Since: 4.8.0.0 |
Show DoHeapProfile # | |
Parameters of the cost-center profiler
Since: 4.8.0.0
ProfFlags | |
|
Is event tracing enabled?
Since: 4.8.2.0
TraceNone | no tracing |
TraceEventLog | send tracing events to the event log |
TraceStderr | send tracing events to |
data TraceFlags Source #
Parameters pertaining to event tracing
Since: 4.8.0.0
TraceFlags | |
|
data TickyFlags Source #
Parameters pertaining to ticky-ticky profiler
Since: 4.8.0.0
Parameters pertaining to parallelism
Since: 4.8.0.0
getRTSFlags :: IO RTSFlags Source #
getGCFlags :: IO GCFlags Source #
getCCFlags :: IO CCFlags Source #
getParFlags :: IO ParFlags Source #