| 77 | |
| 78 | |
| 79 | void EventLoop::stop() |
| 80 | { |
| 81 | if (!libwinio_loop) { |
| 82 | // TODO(andschwa): Remove this check, see MESOS-9097. |
| 83 | LOG(FATAL) << "Windows IOCP event loop is not initialized"; |
| 84 | } |
| 85 | |
| 86 | libwinio_loop->stop(); |
| 87 | } |
| 88 | |
| 89 | } // namespace process { |