Added basic port error handler.
This commit is contained in:
@@ -223,7 +223,7 @@ nxt_master_process_port_create(nxt_task_t *task, nxt_runtime_t *rt)
|
||||
return NXT_ERROR;
|
||||
}
|
||||
|
||||
port = nxt_port_new(0, nxt_pid, NXT_PROCESS_MASTER);
|
||||
port = nxt_port_new(task, 0, nxt_pid, NXT_PROCESS_MASTER);
|
||||
if (nxt_slow_path(port == NULL)) {
|
||||
return NXT_ERROR;
|
||||
}
|
||||
@@ -404,7 +404,7 @@ nxt_master_create_worker_process(nxt_task_t *task, nxt_runtime_t *rt,
|
||||
|
||||
process->init = init;
|
||||
|
||||
port = nxt_port_new(0, 0, init->type);
|
||||
port = nxt_port_new(task, 0, 0, init->type);
|
||||
if (nxt_slow_path(port == NULL)) {
|
||||
nxt_runtime_process_remove(rt, process);
|
||||
return NXT_ERROR;
|
||||
|
||||
Reference in New Issue
Block a user