7 references to Kill
System.Diagnostics.Process (7)
Microsoft\Win32\SafeHandles\SafeProcessHandle.Unix.cs (2)
79int result = Interop.Sys.Kill(processId, 0); 120int killResult = Interop.Sys.Kill(ProcessId, signalNumber);
System\Diagnostics\Process.Unix.cs (3)
84int killResult = Interop.Sys.Kill(_processId, signalNumber); 131int killResult = Interop.Sys.Kill(process._processId, Interop.Sys.GetPlatformSignalNumber(PosixSignal.SIGKILL)); 170int stopResult = Interop.Sys.Kill(_processId, Interop.Sys.GetPlatformSIGSTOP());
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