summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_queue.h
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2017-07-07 16:01:34 +0300
committerMax Romanov <max.romanov@nginx.com>2017-07-07 16:01:34 +0300
commit74cda90e31f97ba0ebd6483f2b073c1240b93a58 (patch)
tree69727640f476822e3cc1e40ac09bf645251617be /src/nxt_queue.h
parent61008a7c0b45fe55f3f611c61f81e569e6baee30 (diff)
downloadunit-74cda90e31f97ba0ebd6483f2b073c1240b93a58.tar.gz
unit-74cda90e31f97ba0ebd6483f2b073c1240b93a58.tar.bz2
Process stop notification from master to all other processes.
New port message type introduced NXT_PORT_MSG_REMOVE_PID. Default handler removes process description from nxt_runtime_t with all ports, incoming and outgoing mmaps etc.
Diffstat (limited to 'src/nxt_queue.h')
-rw-r--r--src/nxt_queue.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nxt_queue.h b/src/nxt_queue.h
index e107b6aa..44e9ad61 100644
--- a/src/nxt_queue.h
+++ b/src/nxt_queue.h
@@ -222,12 +222,13 @@ NXT_EXPORT void nxt_queue_sort(nxt_queue_t *queue,
#define nxt_queue_each(elt, queue, type, link) \
do { \
- nxt_queue_link_t *_lnk; \
+ nxt_queue_link_t *_lnk, *_nxt; \
\
for (_lnk = nxt_queue_first(queue); \
_lnk != nxt_queue_tail(queue); \
- _lnk = nxt_queue_next(_lnk)) { \
+ _lnk = _nxt) { \
\
+ _nxt = nxt_queue_next(_lnk); \
elt = nxt_queue_link_data(_lnk, type, link); \
#define nxt_queue_loop \