Home
last modified time | relevance | path

Searched refs:PTRACE_GETSIGINFO (Results 1 – 13 of 13) sorted by relevance

/external/strace/xlat/
Dptrace_cmds.h70 #if defined(PTRACE_GETSIGINFO) || (defined(HAVE_DECL_PTRACE_GETSIGINFO) && HAVE_DECL_PTRACE_GETSIGI…
71 XLAT(PTRACE_GETSIGINFO),
Dptrace_cmds.in23 PTRACE_GETSIGINFO
/external/kernel-headers/original/uapi/linux/
Dptrace.h29 #define PTRACE_GETSIGINFO 0x4202 macro
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
Dptrace.cc35 res = ptrace(PTRACE_GETSIGINFO, pid, NULL, &siginfo); in main()
/external/strace/
DREADME-linux-ptrace127 resolve ambiguity, by querying PTRACE_GETSIGINFO. (Note:
196 PTRACE_GETSIGINFO can be used to retrieve siginfo_t structure which
218 ptrace(PTRACE_GETSIGINFO, pid, 0, &siginfo)
223 needs to call PTRACE_GETSIGINFO. If PTRACE_GETSIGINFO fails with
275 PTRACE_GETSIGINFO on PTRACE_EVENT stops returns si_signo = SIGTRAP,
298 SIGTRAP by querying PTRACE_GETSIGINFO: si_code <= 0 if sent by usual
302 and performing PTRACE_GETSIGINFO for every syscall-stop may be somewhat
326 PTRACE_GETSIGINFO on syscall-stops returns si_signo = SIGTRAP, si_code
347 ptrace(PTRACE_GETSIGINFO, pid, 0, &siginfo);
Dprocess.c2164 #ifdef PTRACE_GETSIGINFO in sys_ptrace()
2165 case PTRACE_GETSIGINFO: in sys_ptrace()
2191 #ifdef PTRACE_GETSIGINFO in sys_ptrace()
2192 case PTRACE_GETSIGINFO: { in sys_ptrace()
Ddefs.h190 # define PTRACE_GETSIGINFO 0x4202 macro
Dconfigure.ac283 PTRACE_GETSIGINFO,
Dstrace.c2351 stopped = (ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0); in trace()
DChangeLog-CVS260 PTRACE_GETSIGINFO, PTRACE_SETSIGINFO.
2285 * strace.c (trace) [PTRACE_GETSIGINFO]: Fetch siginfo_t for SIGSEGV
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform_limits_posix.cc294 #if (defined(PTRACE_GETSIGINFO) && defined(PTRACE_SETSIGINFO)) || \
296 int ptrace_getsiginfo = PTRACE_GETSIGINFO;
/external/valgrind/main/coregrind/
Dvgdb-invoker-ptrace.c312 res = ptrace (PTRACE_GETSIGINFO, pid, NULL, newsiginfo); in waitstopped()
/external/lldb/source/Plugins/Process/Linux/
DProcessMonitor.cpp795 if (PTRACE(PTRACE_GETSIGINFO, m_tid, NULL, m_info, 0)) { in Execute()