Docs: fix misleading comment in blocking_queue header (#3504)

This commit is contained in:
ZaneWong
2025-12-24 01:15:04 +08:00
committed by GitHub
parent 0209b12c50
commit 32dd298dc2

View File

@@ -5,8 +5,8 @@
// multi producer-multi consumer blocking queue.
// enqueue(..) - will block until room found to put the new message.
// enqueue_nowait(..) - will return immediately with false if no room left in
// the queue.
// enqueue_nowait(..) - enqueue immediately. overruns oldest message if no
// room left.
// dequeue_for(..) - will block until the queue is not empty or timeout have
// passed.