Merge pull request #3505 from smoe/patch-3

be explicit how sched_scheduler was meant to be set
This commit is contained in:
Kevin Reed 2020-04-06 15:42:13 -05:00 committed by GitHub
commit 3c06186464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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