diff options
author | Duncan Coutts <duncan@well-typed.com> | 2013-11-14 15:54:13 +0000 |
---|---|---|
committer | Duncan Coutts <duncan@well-typed.com> | 2013-11-14 16:06:24 +0000 |
commit | a987b8004e83c694e00cdd47cbf43a9588eb47d4 (patch) | |
tree | 0e1e6a30e428a128437244c968bbe82d1112d35d /rts/RtsMain.c | |
parent | ad0b943293cce74baf06ea36e1a4d51a3631dfdf (diff) | |
download | haskell-a987b8004e83c694e00cdd47cbf43a9588eb47d4.tar.gz |
Improve the shutdownHaskellAndSignal and add fast exit
This is the RTS part of a patch to base's topHandler to handle exiting
by a signal.
The intended behaviour is that on Unix, throwing ExitFailure (-sig)
results in the process terminating with that signal. Previously
shutdownHaskellAndSignal was only used for exiting with SIGINT due to
the UserInterrupt exception.
Improve shutdownHaskellAndSignal to do the signal part more carefully.
In particular, it (should) now reliably terminates the process one way
or another. Previusly if the signal was blocked, ignored or handled then
shutdownHaskellAndSignal would actually return!
Also, the topHandler code has two paths a careful shutdown and a "fast
exit" where it does not give finalisers a chance to run. We want to
support that mode also when we want to exit by signal. So rather than
the base code directly calling stg_exit as it did before, we have a
fastExit bool paramater for both shutdownHaskellAnd{Exit,Signal}.
Diffstat (limited to 'rts/RtsMain.c')
-rw-r--r-- | rts/RtsMain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsMain.c b/rts/RtsMain.c index 435df420c5..df637169f8 100644 --- a/rts/RtsMain.c +++ b/rts/RtsMain.c @@ -84,7 +84,7 @@ static void real_main(void) default: barf("main thread completed with invalid status"); } - shutdownHaskellAndExit(exit_status); + shutdownHaskellAndExit(exit_status, 0 /* !fastExit */); } /* The rts entry point from a compiled program using a Haskell main |