mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-11 23:52:29 +00:00
Given the documented behavior of bounded_channel(hwm, lwm), it follows that bounded_channel(n, n) is invalid. If the number of items in the channel == hwm, a push will block. But if the number of items in the channel <= lwm, a push will succeed without blocking. Therefore, setting hwm == lwm results in a contradiction.