diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-08-29 14:18:00 -0700 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-08-29 14:18:00 -0700 |
commit | 92f3b852981c739a2e6ff6d50dc646fe86031b27 (patch) | |
tree | 4d6277f1e9e6a39a7250a181acb4697ee4b034bd /src | |
parent | 6de7cc86344fff319d47f4e3656b7df2bef3283a (diff) | |
download | unit-92f3b852981c739a2e6ff6d50dc646fe86031b27.tar.gz unit-92f3b852981c739a2e6ff6d50dc646fe86031b27.tar.bz2 |
The process type enum exposed to go module.
Diffstat (limited to 'src')
-rw-r--r-- | src/nginext/port.go | 5 | ||||
-rw-r--r-- | src/nxt_main.h | 1 | ||||
-rw-r--r-- | src/nxt_process.h | 12 | ||||
-rw-r--r-- | src/nxt_process_type.h | 23 |
4 files changed, 27 insertions, 14 deletions
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 diff --git a/src/nxt_main.h b/src/nxt_main.h index b8ebfc93..a0be58a1 100644 --- a/src/nxt_main.h +++ b/src/nxt_main.h @@ -56,6 +56,7 @@ typedef uint16_t nxt_port_id_t; #include <nxt_timer.h> #include <nxt_fiber.h> #include <nxt_thread.h> +#include <nxt_process_type.h> #include <nxt_process.h> #include <nxt_utf8.h> #include <nxt_file_name.h> diff --git a/src/nxt_process.h b/src/nxt_process.h index bbe277f2..8b949853 100644 --- a/src/nxt_process.h +++ b/src/nxt_process.h @@ -8,18 +8,6 @@ #define _NXT_PROCESS_H_INCLUDED_ -typedef enum { - NXT_PROCESS_SINGLE = 0, - NXT_PROCESS_MAIN, - NXT_PROCESS_CONTROLLER, - NXT_PROCESS_ROUTER, - NXT_PROCESS_WORKER, - NXT_PROCESS_DISCOVERY, - - NXT_PROCESS_MAX, -} nxt_process_type_t; - - typedef pid_t nxt_pid_t; typedef uid_t nxt_uid_t; typedef gid_t nxt_gid_t; diff --git a/src/nxt_process_type.h b/src/nxt_process_type.h new file mode 100644 index 00000000..16d6dfc8 --- /dev/null +++ b/src/nxt_process_type.h @@ -0,0 +1,23 @@ + +/* + * Copyright (C) Igor Sysoev + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_PROCESS_TYPE_H_INCLUDED_ +#define _NXT_PROCESS_TYPE_H_INCLUDED_ + + +typedef enum { + NXT_PROCESS_SINGLE = 0, + NXT_PROCESS_MAIN, + NXT_PROCESS_DISCOVERY, + NXT_PROCESS_CONTROLLER, + NXT_PROCESS_ROUTER, + NXT_PROCESS_WORKER, + + NXT_PROCESS_MAX, +} nxt_process_type_t; + + +#endif /* _NXT_PROCESS_TYPE_H_INCLUDED_ */ |