I am using PDCurses to write console app in Windows. I want the app to terminate when I press Ctrl+C.
My minimal reproducible code is as below. If I comment out initscr()
and endwin()
, the app will terminal after receive SIGINT
and print "End" in the console. However, it does not work with the two lines, and it will fun forever.
#include <curses.h>
#include <signal.h>
void handle_sig(int sig) {
if (sig == SIGINT) {
endwin();
printf("End\n");
exit(0);
}
}
int main() {
signal(SIGINT, handle_sig);
initscr();
while (1);
return 0;
}
It seems that
noraw()
mode was never really implemented for the Windows console port of PDCurses. (It is in DOS and OS/2.) I was able to correct this, although a complete fix will require a bit more work.In the meantime, I suggest rewriting your program to handle Ctrl+C itself, if at all possible. Note that, even if noraw mode is fixed for wincon, it will probably never work in the PDCurses ports that don't depend on a controlling terminal.
But if you want to patch your PDCurses:
(This disables the mouse input toggle -- a quick and dirty patch.)