From 53dbba769537e894ead5c6913ab2fd3a4658b738 Mon Sep 17 00:00:00 2001 From: mgroeber9110 <45620825+mgroeber9110@users.noreply.github.com> Date: Mon, 3 Apr 2023 18:00:55 +0200 Subject: Windows: reactive sigint handler after each Ctrl-C (#736) --- examples/main/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'examples/main') diff --git a/examples/main/main.cpp b/examples/main/main.cpp index 3130aef..453450a 100644 --- a/examples/main/main.cpp +++ b/examples/main/main.cpp @@ -368,6 +368,11 @@ int main(int argc, char ** argv) { // potentially set color to indicate we are taking user input set_console_color(con_st, CONSOLE_COLOR_USER_INPUT); +#if defined (_WIN32) + // Windows: must reactivate sigint handler after each signal + signal(SIGINT, sigint_handler); +#endif + if (params.instruct) { printf("\n> "); } -- cgit v1.2.3