summaryrefslogtreecommitdiff
path: root/Base/usr/share
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2020-01-02 12:36:15 +0100
committerAndreas Kling <awesomekling@gmail.com>2020-01-02 12:36:15 +0100
commit05b004ec64ccc6a99dfcd2d9e716f0544cc646b4 (patch)
treef8e21b06dd774b1df790e5512fb57632233399d3 /Base/usr/share
parent0c22646e2be4ad4a0eb7998738170a82f2e2739b (diff)
downloadserenity-05b004ec64ccc6a99dfcd2d9e716f0544cc646b4.zip
Base: Remove "idle" priority note from SystemServer(5)
The "idle" priority was never meant to be exposed to userspace, as it's only used by the kernel's internal idle thread.
Diffstat (limited to 'Base/usr/share')
-rw-r--r--Base/usr/share/man/man5/SystemServer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/usr/share/man/man5/SystemServer.md b/Base/usr/share/man/man5/SystemServer.md
index 0c0672daef..f27880b2a3 100644
--- a/Base/usr/share/man/man5/SystemServer.md
+++ b/Base/usr/share/man/man5/SystemServer.md
@@ -19,7 +19,7 @@ describing how to launch and manage this service.
* `Executable` - an executable to spawn. If no explicit executable is specified, SystemServer assumes `/bin/{service name}` (for example, `/bin/WindowServer` for a service named `WindowServer`).
* `Arguments` - a space-separated list of arguments to pass to the service as `argv` (excluding `argv[0]`). By default, SystemServer does not pass any arguments other than `argv[0]`.
* `StdIO` - a path to a file to be passed as standard I/O streams to the service. By default, services inherit SystemServer's own standard I/O streams, which are normally set to `/dev/tty0`.
-* `Priority` - the scheduling priority to set for the service, either "idle", "low", "normal", or "high". The default is "normal".
+* `Priority` - the scheduling priority to set for the service, either "low", "normal", or "high". The default is "normal".
* `KeepAlive` - whether the service should be restarted if it exits or crashes. For lazy services, this means the service will get respawned once a new connection is attempted on their socket after they exit or crash.
* `Lazy` - whether the service should only get spawned once a client attempts to connect to their socket.
* `Socket` - a path to a socket to create on behalf of the service. For lazy services, SystemServer will actually watch the socket for new connection attempts. An open file descriptor to this socket will be passed as fd 3 to the service.