* @brief True if our connection to the kernel has been closed. * (Generally used for remote connections) *************************************************************/
| 145 | * (Generally used for remote connections) |
| 146 | *************************************************************/ |
| 147 | bool Kernel::IsConnectionClosed() |
| 148 | { |
| 149 | return !GetConnection() || GetConnection()->IsClosed() ; |
| 150 | } |
| 151 | |
| 152 | /************************************************************* |
| 153 | * @brief True if this is a remote connection to the kernel |
nothing calls this directly
no test coverage detected