Searched defs:tgkill (Results 1 - 1 of 1) sorted by relevance

/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp56 // Try to define a macro to encapsulate the tgkill syscall
57 // fall back on kill() if tgkill isn't available
58 #define tgkill(pid, tid, sig) syscall(SYS_tgkill, pid, tid, sig) macro
1567 // kill(2) or raise(3). Similarly for tgkill(2) on Linux.
1625 // FIXME: Try to use tgkill or tkill
1626 int ret = tgkill(m_pid, tid, SIGSTOP);

Completed in 249 milliseconds