diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-02-01 15:07:23 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-02-01 15:07:23 +0300 |
commit | 8942550b13515e54aff9d682bec3da45ade26e18 (patch) | |
tree | 17e36260cfc5519d2aaa89dbffc7bcbd63687f9d /src/nxt_master_process.c | |
parent | d4d36c65fa14dabeb029b3e6157d85672ac176ad (diff) | |
download | unit-8942550b13515e54aff9d682bec3da45ade26e18.tar.gz unit-8942550b13515e54aff9d682bec3da45ade26e18.tar.bz2 |
More refactoring relicts removed.
Diffstat (limited to 'src/nxt_master_process.c')
-rw-r--r-- | src/nxt_master_process.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/nxt_master_process.c b/src/nxt_master_process.c index 60e231ab..fbf0f6bf 100644 --- a/src/nxt_master_process.c +++ b/src/nxt_master_process.c @@ -105,7 +105,7 @@ nxt_master_process_title(void) end = title + sizeof(title); - p = nxt_sprintf(title, end, "nginman: master process %s", + p = nxt_sprintf(title, end, "nginext: master process %s", nxt_process_argv[0]); for (i = 1; nxt_process_argv[i] != NULL; i++) { @@ -199,8 +199,7 @@ nxt_master_process_sighup_handler(nxt_task_t *task, void *obj, void *data) if (!cycle->reconfiguring) { (void) nxt_cycle_create(task->thread, task, cycle, - nxt_master_process_new_cycle, - cycle->config_name); + nxt_master_process_new_cycle); } } @@ -430,8 +429,8 @@ nxt_master_process_sigusr2_handler(nxt_task_t *task, void *obj, void *data) * tested explicitly. There is no workaround for this race condition * in Solaris zons. To eliminate this race condition in Solaris * zone the old master process should be quit only when both - * "nginman.pid.oldbin" (created by the old master process) and - * "nginman.pid" (created by the new master process) files exists. + * "nginext.pid.oldbin" (created by the old master process) and + * "nginext.pid" (created by the new master process) files exists. */ ignore = 1; } |