systemd: assign real-time budget

This commit is contained in:
Max Kellermann 2014-02-12 21:00:53 +01:00
parent d05ae4b444
commit 5a486a940c
1 changed files with 13 additions and 0 deletions

View File

@ -5,5 +5,18 @@ After=network.target sound.target
[Service]
ExecStart=@prefix@/bin/mpd --no-daemon
# allow MPD to use real-time priority 50
LimitRTPRIO=50
LimitRTTIME=-1
# move MPD to a top-level cgroup, as real-time budget assignment fails
# in cgroup /system/mpd.service, because /system has a zero real-time
# budget; see
# http://www.freedesktop.org/wiki/Software/systemd/MyServiceCantGetRealtime/
ControlGroup=cpu:/mpd
# assign a real-time budget
ControlGroupAttribute=cpu.rt_runtime_us 500000
[Install]
WantedBy=multi-user.target