diff options
author | roland <rsx@bluewin.ch> | 2018-08-21 16:05:45 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-08-21 18:56:12 -0400 |
commit | dcf27e6f78529e7e471a4be64ca47398eb1b6b52 (patch) | |
tree | 227bd782b285325d034e7eb28239bc28e368a43d /rts/RtsUtils.h | |
parent | ddffa0cd8da568c97011007fc6470c61cd4447e5 (diff) | |
download | haskell-dcf27e6f78529e7e471a4be64ca47398eb1b6b52.tar.gz |
Show -with-rtsopts options in runtime's --info (#15261)
Add an additional line to the output of +RTS --info. It shows the value
of the flag -with-rtsopts provided at compile/link time.
Test Plan: make test TESTS="T15261a T15261b"
Reviewers: hvr, erikd, dfeuer, thomie, austin, bgamari, simonmar, osa1,
monoidal
Reviewed By: osa1, monoidal
Subscribers: osa1, rwbarton, carter
GHC Trac Issues: #15261
Differential Revision: https://phabricator.haskell.org/D5053
Diffstat (limited to 'rts/RtsUtils.h')
-rw-r--r-- | rts/RtsUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsUtils.h b/rts/RtsUtils.h index 16596c1716..49712c0d47 100644 --- a/rts/RtsUtils.h +++ b/rts/RtsUtils.h @@ -40,7 +40,7 @@ char *showStgWord64(StgWord64, char *, bool); void heapCheckFail( void ); #endif -void printRtsInfo(void); +void printRtsInfo(const RtsConfig); void checkFPUStack(void); |