diff options
author | Ben Gamari <ben@well-typed.com> | 2018-07-06 21:02:22 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-10-20 21:15:37 -0400 |
commit | b3ef2d1a861e9b892d64f22f6a233ea331db86d1 (patch) | |
tree | 33c786e86a43fda16b78321c9a3558a5b9f95f42 /rts | |
parent | 6ff29c064dc042855a0a9a7ebe2cfac55edf17f3 (diff) | |
download | haskell-b3ef2d1a861e9b892d64f22f6a233ea331db86d1.tar.gz |
rts: Introduce debug flag for non-moving GC
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Trace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/Trace.h b/rts/Trace.h index d3bb226000..be4d844a6b 100644 --- a/rts/Trace.h +++ b/rts/Trace.h @@ -50,6 +50,7 @@ enum CapsetType { CapsetTypeCustom = CAPSET_TYPE_CUSTOM, #define DEBUG_weak RtsFlags.DebugFlags.weak #define DEBUG_gccafs RtsFlags.DebugFlags.gccafs #define DEBUG_gc RtsFlags.DebugFlags.gc +#define DEBUG_nonmoving_gc RtsFlags.DebugFlags.nonmoving_gc #define DEBUG_block_alloc RtsFlags.DebugFlags.alloc #define DEBUG_sanity RtsFlags.DebugFlags.sanity #define DEBUG_zero_on_gc RtsFlags.DebugFlags.zero_on_gc |