From 92f3b852981c739a2e6ff6d50dc646fe86031b27 Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Tue, 29 Aug 2017 14:18:00 -0700 Subject: The process type enum exposed to go module. --- src/nginext/port.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/nginext/port.go') diff --git a/src/nginext/port.go b/src/nginext/port.go index 26ca26d2..ee858612 100644 --- a/src/nginext/port.go +++ b/src/nginext/port.go @@ -7,6 +7,7 @@ package nginext /* #include "nxt_go_lib.h" +#include "nxt_process_type.h" */ import "C" @@ -33,7 +34,7 @@ type port struct { type port_registry struct { sync.RWMutex m map[port_key]*port - t [5]*port + t [C.NXT_PROCESS_MAX]*port } var port_registry_ port_registry @@ -65,7 +66,7 @@ func remove_by_pid(pid int) { func main_port() *port { port_registry_.RLock() - res := port_registry_.t[1] + res := port_registry_.t[C.NXT_PROCESS_MAIN] port_registry_.RUnlock() return res -- cgit