summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_port.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/nxt_port.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nxt_port.h b/src/nxt_port.h
index fdb5a561..09ad6367 100644
--- a/src/nxt_port.h
+++ b/src/nxt_port.h
@@ -127,7 +127,11 @@ struct nxt_port_recv_msg_s {
nxt_port_t *port;
nxt_port_msg_t port_msg;
size_t size;
- nxt_port_t *new_port;
+ union {
+ nxt_port_t *new_port;
+ nxt_pid_t removed_pid;
+ void *data;
+ } u;
};
typedef struct nxt_app_s nxt_app_t;