| 913 | bool SC::AsyncEventLoop::isInitialized() const { return internal.initialized; } |
| 914 | |
| 915 | bool SC::AsyncEventLoop::needsThreadPoolForFileOperations() const |
| 916 | { |
| 917 | return internal.kernelQueue.get().needsThreadPoolForFileOperations(); |
| 918 | } |
| 919 | |
| 920 | SC::Result SC::AsyncEventLoop::runOnce() { return internal.runStep(*this, Internal::SyncMode::ForcedForwardProgress); } |
| 921 |