| 151 | Shutdown(*m_context); |
| 152 | } |
| 153 | void startShutdown() override |
| 154 | { |
| 155 | NodeContext& ctx{*Assert(m_context)}; |
| 156 | if (!(Assert(ctx.shutdown_request))()) { |
| 157 | LogError("Failed to send shutdown signal\n"); |
| 158 | } |
| 159 | Interrupt(*m_context); |
| 160 | } |
| 161 | bool shutdownRequested() override { return ShutdownRequested(*Assert(m_context)); }; |
| 162 | bool isSettingIgnored(const std::string& name) override |
| 163 | { |
no test coverage detected