Print feature sigint=0 sigterm=0
authorH.G.Muller <hgm@hgm-xboard.(none)>
Thu, 30 Oct 2014 09:13:18 +0000 (10:13 +0100)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Thu, 30 Oct 2014 09:13:18 +0000 (10:13 +0100)
Better to not even let XBoard send the signals we are going to ignore,
as this would just waste system resources.

UCI2WB.c

index 77b671b..a6c229f 100644 (file)
--- a/UCI2WB.c
+++ b/UCI2WB.c
@@ -430,7 +430,7 @@ GUI2Engine()
        }\r
        else if(!strcmp(command, "protover")) {\r
            if(!variants) variants = sc=='s' ? "shogi,5x5+5_shogi" : VARIANTS;\r
-           printf("feature variants=\"%s\" setboard=1 usermove=1 debug=1 ping=1 reuse=0 exclude=1 pause=1 done=0\n", variants);\r
+           printf("feature variants=\"%s\" setboard=1 usermove=1 debug=1 ping=1 reuse=0 exclude=1 pause=1 sigint=0 sigterm=0 done=0\n", variants);\r
            printf("feature option=\"UCI2WB debug output -check %d\"\n", debug);\r
            fprintf(toE, sc == 'x' ? "ucci\n" : "u%ci\n", sc); fflush(toE); // prompt UCI engine for options\r
            Sync(PAUSE); // wait for uciok\r