| 1320 | // Never allocates. Thread-safe. |
| 1321 | template<typename U> |
| 1322 | inline bool try_dequeue_from_producer(producer_token_t const& producer, U& item) |
| 1323 | { |
| 1324 | return static_cast<ExplicitProducer*>(producer.producer)->dequeue(item); |
| 1325 | } |
| 1326 | |
| 1327 | // Attempts to dequeue several elements from a specific producer's inner queue. |
| 1328 | // Returns the number of items actually dequeued. |