| 1628 | } |
| 1629 | |
| 1630 | void SC::AsyncEventLoop::Internal::pushToCancellationQueue(AsyncRequest& async) |
| 1631 | { |
| 1632 | SC_ASYNC_ASSERT_RELEASE(async.isCancelling()); |
| 1633 | if (async.sequence and async.sequence->clearSequenceOnCancel) |
| 1634 | { |
| 1635 | clearSequence(*async.sequence); |
| 1636 | } |
| 1637 | cancellations.queueBack(async); |
| 1638 | } |
| 1639 | |
| 1640 | SC::Result SC::AsyncEventLoop::Internal::submitRequests(AsyncEventLoop& eventLoop, AsyncKernelEvents& asyncKernelEvents) |
| 1641 | { |
nothing calls this directly
no test coverage detected