Home | History | Annotate | Download | only in Linux

Lines Matching refs:tgkill

56 // 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)
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);