The master process title has been renamed to "main" process.

The command line is enclosed in brackets.
This commit is contained in:
Igor Sysoev
2017-07-19 15:22:40 +03:00
parent 0d7af2adf7
commit ba6c8e51be

View File

@@ -248,17 +248,21 @@ nxt_master_process_title(nxt_task_t *task)
nxt_uint_t i; nxt_uint_t i;
u_char title[2048]; u_char title[2048];
end = title + sizeof(title); end = title + sizeof(title) - 1;
p = nxt_sprintf(title, end, "nginext: master %s", nxt_process_argv[0]); p = nxt_sprintf(title, end, "nginext: main [%s", nxt_process_argv[0]);
for (i = 1; nxt_process_argv[i] != NULL; i++) { for (i = 1; nxt_process_argv[i] != NULL; i++) {
p = nxt_sprintf(p, end, " %s", nxt_process_argv[i]); p = nxt_sprintf(p, end, " %s", nxt_process_argv[i]);
} }
if (p < end) {
*p++ = ']';
}
*p = '\0'; *p = '\0';
nxt_process_title(task, "%s", (char *) title); nxt_process_title(task, "%s", title);
} }