diff options
author | sad-goldfish <98661640+sad-goldfish@users.noreply.github.com> | 2022-03-05 20:48:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 15:48:17 -0500 |
commit | 270e5c6828577e50830fd3b5662f2b3ec4fb6772 (patch) | |
tree | 1cb6960c146c9829b403fbb27fdc4a442859d3cd /man | |
parent | d7963104564fd8277dd39303b1b3f9c90db0bf20 (diff) |
Add Posix Scheduling Support to start-stop-daemon (#497)
Diffstat (limited to 'man')
-rw-r--r-- | man/start-stop-daemon.8 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/man/start-stop-daemon.8 b/man/start-stop-daemon.8 index 257cad70..6c96b7f7 100644 --- a/man/start-stop-daemon.8 +++ b/man/start-stop-daemon.8 @@ -130,6 +130,13 @@ Data can be from 0 to 7 inclusive. Modifies the scheduling priority of the daemon. .It Fl -oom-score-adj Ar adj Modifies the OOM score adjustment of the daemon. +.It Fl -scheduler Ar policy +Sets the scheduling policy of the daemon. Possible values are other, fifo and rr +on POSIX systems and, additionally, batch and idle on Linux. If +.Ar policy +is an integer, it is passed directly to sched_setscheduler(2). +.It Fl -scheduler-priority Ar priority +Sets the priority parameter of the scheduling policy of the daemon. See sched(7) for details. .It Fl 1 , -stdout Ar logfile Redirect the standard output of the process to logfile when started with .Fl background . |