| 1185 | } |
| 1186 | |
| 1187 | SC::Result SC::AsyncEventLoopMonitor::startMonitoring() |
| 1188 | { |
| 1189 | // Submit all requests made so far before entering polling mode |
| 1190 | SC_TRY(eventLoop->submitRequests(asyncKernelEvents)); |
| 1191 | eventObjectEnterBlockingMode.signal(); |
| 1192 | return Result(true); |
| 1193 | } |
| 1194 | |
| 1195 | SC::Result SC::AsyncEventLoopMonitor::monitoringLoopThread(Thread& thread) |
| 1196 | { |
no test coverage detected