| 39 | } |
| 40 | |
| 41 | void markEventOnActiveQueue(af_event eventHandle) { |
| 42 | Event& event = getEvent(eventHandle); |
| 43 | // Use the currently-active queue |
| 44 | if (event.mark(getQueue()) != 0) { |
| 45 | AF_ERROR("Could not mark event on active queue", AF_ERR_RUNTIME); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void enqueueWaitOnActiveQueue(af_event eventHandle) { |
| 50 | Event& event = getEvent(eventHandle); |
no test coverage detected