| 316 | } |
| 317 | |
| 318 | bool SubProcess::SendSignal(int signal) |
| 319 | { |
| 320 | CHECK_GT(m_pid, 1) << "Invalid pid"; |
| 321 | return kill(m_pid, signal) == 0; |
| 322 | } |
| 323 | |
| 324 | bool SubProcess::IsAlive() const |
| 325 | { |
nothing calls this directly
no outgoing calls
no test coverage detected