| 46 | } |
| 47 | |
| 48 | std::unique_lock<std::mutex> WorkQueue::AcquireLock() |
| 49 | { |
| 50 | return std::unique_lock<std::mutex>(m_Mutex); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Enqueues a task. Tasks are guaranteed to be executed in the order |
nothing calls this directly
no outgoing calls
no test coverage detected