diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-03-09 18:05:00 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-03-09 18:05:00 -0500 |
commit | cbf74de439b6c0334596a9fd461aad2f4552e7fe (patch) | |
tree | bb5abec0112dd929c72c463ec6ca8e75e61ecaee | |
parent | a74b11b62df32286944372e14f60e2d113f7a2a8 (diff) |
nspawn: Reword a comment.
I had to read it 3 times before I understood its sentence structure.
-rw-r--r-- | src/systemd-nspawn/nspawn-stub-pid1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemd-nspawn/nspawn-stub-pid1.c b/src/systemd-nspawn/nspawn-stub-pid1.c index 36d7bfc7c4..208c6f30aa 100644 --- a/src/systemd-nspawn/nspawn-stub-pid1.c +++ b/src/systemd-nspawn/nspawn-stub-pid1.c @@ -42,8 +42,8 @@ int stub_pid1(void) { pid_t pid; int r; - /* Implements a stub PID 1, that reaps all processes and processes a couple of standard signals. This is useful - * for allowing arbitrary processes run in a container, and still have all zombies reaped. */ + /* Implements a stub PID 1, that reaps all processes and handles a couple of standard signals. This is useful + * for allowing arbitrary processes to run in a container, and still have all zombies reaped. */ assert_se(sigfillset(&fullmask) >= 0); assert_se(sigprocmask(SIG_BLOCK, &fullmask, &oldmask) >= 0); |