reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/Unix/Program.inc
  371         kill(PI.Pid, SIGKILL);
projects/compiler-rt/lib/profile/InstrProfilingUtil.c
  315   if (prctl(PR_GET_PDEATHSIG, &PDeachSig) == 0 && PDeachSig == SIGKILL)
  317   return (PDeachSig == SIGKILL);
  325   prctl(PR_SET_PDEATHSIG, SIGKILL);
projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
  282   internal_prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
tools/lldb/source/Host/common/Host.cpp
  338   case SIGKILL:
  544       Kill(pid, SIGKILL);
tools/lldb/source/Host/posix/HostProcessPosix.cpp
   52 Status HostProcessPosix::Terminate() { return Signal(SIGKILL); }
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
 1212   if (kill(GetID(), SIGKILL) != 0) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
  294   Host::Kill(pid, SIGKILL);
tools/lldb/source/Target/Process.cpp
 3111     SetExitStatus(SIGKILL, "Cancelled async attach.");