From 83088a0f4bdbe321c42e7cf0b18e2a9cc897b068 Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Fri, 23 Jun 2017 19:20:08 +0300 Subject: Incoming and outgoing port_mmap arrays are protected with mutexes. --- src/nxt_runtime.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nxt_runtime.c') diff --git a/src/nxt_runtime.c b/src/nxt_runtime.c index b4177bf0..4d69ecd0 100644 --- a/src/nxt_runtime.c +++ b/src/nxt_runtime.c @@ -1473,6 +1473,9 @@ nxt_runtime_process_new(nxt_runtime_t *rt) /* TODO each process should have it's own mem_pool for ports allocation */ process->mem_pool = rt->mem_pool; + nxt_thread_mutex_create(&process->incoming_mutex); + nxt_thread_mutex_create(&process->outgoing_mutex); + return process; } -- cgit