diff options
author | Richard Lowe <richlowe@richlowe.net> | 2022-02-26 16:40:47 -0600 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2022-03-10 01:14:35 -0600 |
commit | bbf215553c7233fbab8a0afdf1fac74c44781867 (patch) | |
tree | e698415c5d1265b368c58c56199244dc2be86500 /usr/src/cmd/cron/cron.c | |
parent | 236cb9a89d936b4b681853751c9af1adccc35ef9 (diff) | |
download | illumos-gate-bbf215553c7233fbab8a0afdf1fac74c44781867.tar.gz |
14443 resection manual pages per IPD4
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Robert Mustacchi <rm@fingolfin.org>
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: Andy Fiddaman <andy@omnios.org>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/cmd/cron/cron.c')
-rw-r--r-- | usr/src/cmd/cron/cron.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/src/cmd/cron/cron.c b/usr/src/cmd/cron/cron.c index a34d98766e..1be2e71968 100644 --- a/usr/src/cmd/cron/cron.c +++ b/usr/src/cmd/cron/cron.c @@ -352,7 +352,7 @@ static void *get_obj(struct shared *obj); * it's original intended use. */ static time_t last_time, init_time, t_old; -static int reset_needed; /* set to 1 when cron(1M) needs to re-initialize */ +static int reset_needed; /* set to 1 when cron(8) needs to re-initialize */ static int refresh; static sigset_t defmask, sigmask; @@ -436,7 +436,7 @@ main(int argc, char *argv[]) /* * reset_needed is set to 1 whenever el_add() finds out that a cron - * job is scheduled to be run before the time when cron(1M) daemon + * job is scheduled to be run before the time when cron(8) daemon * initialized. * Other cases where a reset is needed is when ex() finds that the * event to be executed is being run at the wrong time, or when idle() @@ -688,7 +688,7 @@ initialize(int firstpass) REMOVE_FIFO|CONSOLE_MSG); } else { if (NOFORK) { - /* didn't fork... init(1M) is waiting */ + /* didn't fork... init(8) is waiting */ (void) sleep(60); } perror("FIFO"); @@ -697,7 +697,7 @@ initialize(int firstpass) } } else { if (NOFORK) { - /* didn't fork... init(1M) is waiting */ + /* didn't fork... init(8) is waiting */ (void) sleep(60); /* * the wait is painful, but we don't want |