From f93cd1968d1b7df483c06030fa194405855a73cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20M=C3=B6ller?= Date: Sun, 15 Mar 2020 21:05:33 +0100 Subject: [PATCH] be explicit how sched_scheduler was meant to be set The error message may just be something like "function not implemented" and you really want to know where to look (compare http://gene.disi.unitn.it/test/result.php?resultid=48055778). --- client/app_start.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app_start.cpp b/client/app_start.cpp index 9b61b69be7..c5f567afa4 100644 --- a/client/app_start.cpp +++ b/client/app_start.cpp @@ -1105,7 +1105,7 @@ int ACTIVE_TASK::start(bool test) { struct sched_param sp; sp.sched_priority = 0; if (sched_setscheduler(0, SCHED_IDLE, &sp)) { - perror("sched_setscheduler"); + perror("app_start sched_setscheduler(SCHED_IDLE)"); } } #endif