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

/external/google-breakpad/src/client/linux/handler/
H A Dexception_handler.cc34 // uses ExceptionHandler, you need to use tgkill to direct it to the current
108 // A wrapper for the tgkill syscall: send a signal to a specific thread.
109 static int tgkill(pid_t tgid, pid_t tid, int sig) { function
373 if (tgkill(getpid(), syscall(__NR_gettid), sig) < 0) {
/external/strace/
H A Dsys_func.h272 extern SYS_FUNC(tgkill);
H A Dsignal.c482 SYS_FUNC(tgkill)
/external/elfutils/src/tests/
H A Dbacktrace.c280 #define tgkill(pid, tid, sig) syscall (__NR_tgkill, (pid), (tid), (sig)) macro
/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);
/external/google-breakpad/src/third_party/lss/
H A Dlinux_syscall_support.h3154 LSS_INLINE _syscall3(int, tgkill, pid_t, p,

Completed in 229 milliseconds