! Destroy safe queue. */
| 51 | |
| 52 | /*! Destroy safe queue. */ |
| 53 | ~ThreadBlockingQueue() { |
| 54 | std::lock_guard < SpinMutex > lock(m_mutex); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Sets the maximum number of items in the queue. Real value is clamped |
nothing calls this directly
no outgoing calls
no test coverage detected