| 15 | // |
| 16 | |
| 17 | SimpleEventQueueBuffer::SimpleEventQueueBuffer() |
| 18 | { |
| 19 | m_queueMutex = ARCH->newMutex(); |
| 20 | m_queueReadyCond = ARCH->newCondVar(); |
| 21 | } |
| 22 | |
| 23 | SimpleEventQueueBuffer::~SimpleEventQueueBuffer() |
| 24 | { |
nothing calls this directly
no test coverage detected