From: H.G.Muller Date: Mon, 17 Jun 2019 11:59:04 +0000 (+0200) Subject: Also do not nice priority of a remote shell X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=36af1b5f5a0968f9a7b873fcca916c8f8f3ab587;p=xboard.git Also do not nice priority of a remote shell When the engine is really running elsewhere the program used to communicate it should not have lowered priority. --- diff --git a/backend.c b/backend.c index a3220c2..ba9b49b 100644 --- a/backend.c +++ b/backend.c @@ -11195,7 +11195,7 @@ StartChessProgram (ChessProgramState *cps) snprintf(buf, sizeof(buf), "%s %s -l %s %s", appData.remoteShell, cps->host, appData.remoteUser, cps->program); } - err = StartChildProcess(buf, "", &cps->pr, priority); + err = StartChildProcess(buf, "", &cps->pr, 0); } if (err != 0) {