mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-12-22 22:36:30 +01:00
alsactl: fix --sched-idle (set it really to SCHED_IDLE)
Reported-by: tommy <tommy@kelsos.ptp> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
160b47e27c
commit
34e373d0b1
2 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,8 @@ man_MANS += alsactl_init.7
|
|||
endif
|
||||
EXTRA_DIST=alsactl.1 alsactl_init.xml
|
||||
|
||||
AM_CFLAGS = -D_GNU_SOURCE
|
||||
|
||||
alsactl_SOURCES=alsactl.c state.c lock.c utils.c init_parse.c daemon.c \
|
||||
monitor.c
|
||||
|
||||
|
|
|
@ -161,7 +161,7 @@ static void do_nice(int use_nice, int sched_idle)
|
|||
if (sched_idle) {
|
||||
if (sched_getparam(0, &sched_param) >= 0) {
|
||||
sched_param.sched_priority = 0;
|
||||
if (!sched_setscheduler(0, SCHED_RR, &sched_param))
|
||||
if (!sched_setscheduler(0, SCHED_IDLE, &sched_param))
|
||||
error("sched_setparam failed: %s", strerror(errno));
|
||||
} else {
|
||||
error("sched_getparam failed: %s", strerror(errno));
|
||||
|
|
Loading…
Reference in a new issue