diff options
Diffstat (limited to '')
-rw-r--r-- | src/nxt_queue.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nxt_queue.h b/src/nxt_queue.h index f1efd328..e107b6aa 100644 --- a/src/nxt_queue.h +++ b/src/nxt_queue.h @@ -193,7 +193,11 @@ nxt_queue_truncate(queue, link) \ } while (0) -/* Add the queue "tail" to the queue "queue". */ +/* + * Add the queue "tail" to the queue "queue". + * If the queue "tail" is intended to be reused again, + * it must be initiated with nxt_queue_init(tail). + */ #define \ nxt_queue_add(queue, tail) \ |