Handle signals properly on Windows #1123
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This uses Window's
SetConsoleCtrlHandler
to handle ctrl+c.We currently use
signal
but Windows' official documentation forsignal
warns us:This wasn't a big deal before but since we now print timings on ctrl+c exit (1021), we should probably handle the signal properly.
The documentation for
SetConsoleCtrlHandler
has no such warning and their example code even shows them usingprintf
.Another advantage to doing it this way is we don't have to reinitialize SIGINT every loop in main like we currently do.
The only downside I see to this is the inclusion of <windows.h>, but fortunately we can cut down on what the header pulls in by defining
WIN32_LEAN_AND_MEAN
. If this still isn't satisfactory, I can change this to do a little cluster of defines at the top as is done in common.cpp.