6 references to Kill
System.Diagnostics.Process (6)
Microsoft\Win32\SafeHandles\SafeProcessHandle.Unix.cs (1)
91int killResult = Interop.Sys.Kill(ProcessId, signalNumber);
System\Diagnostics\Process.Unix.cs (3)
72int killResult = Interop.Sys.Kill(_processId, Interop.Sys.GetPlatformSignalNumber(PosixSignal.SIGKILL)); 108int stopResult = Interop.Sys.Kill(_processId, Interop.Sys.GetPlatformSIGSTOP()); 122int killResult = Interop.Sys.Kill(_processId, Interop.Sys.GetPlatformSignalNumber(PosixSignal.SIGKILL));
System\Diagnostics\ProcessManager.Unix.cs (1)
30int output = Interop.Sys.Kill(processId, 0);
System\Diagnostics\ProcessWaitState.Unix.cs (1)
369int killResult = Interop.Sys.Kill(_processId, 0); // 0 means don't send a signal, used to check if process is still alive