diff options
author | Dan McDonald <danmcd@joyent.com> | 2022-03-15 12:07:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 12:07:15 -0400 |
commit | 83decd22b44019b0fe369224fb19e1ef21263ab6 (patch) | |
tree | 0bbbaea9d4231f77a406362904280d6ba53e1d55 /usr/src/cmd/svc/startd/fork.c | |
parent | ad491f11d9af43fd3f0d6159c9e08112de475a54 (diff) | |
download | illumos-joyent-83decd22b44019b0fe369224fb19e1ef21263ab6.tar.gz |
OS-8361 IPD 4 (man page renumbering) tracking issue
Reviewed by: Brian Bennett <brian.bennett@joyent.com>
Approved by: Brian Bennett <brian.bennett@joyent.com>
Diffstat (limited to 'usr/src/cmd/svc/startd/fork.c')
-rw-r--r-- | usr/src/cmd/svc/startd/fork.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr/src/cmd/svc/startd/fork.c b/usr/src/cmd/svc/startd/fork.c index 7bce347854..df91d174ca 100644 --- a/usr/src/cmd/svc/startd/fork.c +++ b/usr/src/cmd/svc/startd/fork.c @@ -94,7 +94,7 @@ startd_fork1(int *forkerr) /* * void fork_mount(char *, char *) - * Run mount(1M) with the given options and mount point. (mount(1M) has much + * Run mount(8) with the given options and mount point. (mount(8) has much * hidden knowledge; it's much less correct to reimplement that logic here to * save a fork(2)/exec(2) invocation.) */ @@ -116,7 +116,7 @@ fork_mount(char *path, char *opts) (void) waitpid(pid, &status, 0); /* - * If our mount(1M) invocation exited by peculiar means, or with + * If our mount(8) invocation exited by peculiar means, or with * a non-zero status, our mount likelihood is low. */ if (!WIFEXITED(status) || @@ -183,8 +183,8 @@ fork_common(const char *name, const char *svc_fmri, int retries, ctid_t *ctidp, for (pid = fork1(); pid == -1; pid = fork1()) { if (++tries > retries) { /* - * When we exit the sulogin session, init(1M) - * will restart svc.startd(1M). + * When we exit the sulogin session, init(8) + * will restart svc.startd(8). */ err = errno; (void) ct_tmpl_clear(ctfd); @@ -217,7 +217,7 @@ fork_common(const char *name, const char *svc_fmri, int retries, ctid_t *ctidp, * is ended, we continue. This is the last fallback action for system * maintenance. * - * If immediate is true, fork_sulogin() executes sulogin(1M) directly, without + * If immediate is true, fork_sulogin() executes sulogin(8) directly, without * forking. * * Because fork_sulogin() is needed potentially before we daemonize, we leave |