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