Searched refs:PTRACE_GETSIGINFO (Results 1 – 13 of 13) sorted by relevance
/external/strace/xlat/ |
D | ptrace_cmds.h | 70 #if defined(PTRACE_GETSIGINFO) || (defined(HAVE_DECL_PTRACE_GETSIGINFO) && HAVE_DECL_PTRACE_GETSIGI… 71 XLAT(PTRACE_GETSIGINFO),
|
D | ptrace_cmds.in | 23 PTRACE_GETSIGINFO
|
/external/kernel-headers/original/uapi/linux/ |
D | ptrace.h | 29 #define PTRACE_GETSIGINFO 0x4202 macro
|
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
D | ptrace.cc | 35 res = ptrace(PTRACE_GETSIGINFO, pid, NULL, &siginfo); in main()
|
/external/strace/ |
D | README-linux-ptrace | 127 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);
|
D | process.c | 2164 #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()
|
D | defs.h | 190 # define PTRACE_GETSIGINFO 0x4202 macro
|
D | configure.ac | 283 PTRACE_GETSIGINFO,
|
D | strace.c | 2351 stopped = (ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0); in trace()
|
D | ChangeLog-CVS | 260 PTRACE_GETSIGINFO, PTRACE_SETSIGINFO. 2285 * strace.c (trace) [PTRACE_GETSIGINFO]: Fetch siginfo_t for SIGSEGV
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_platform_limits_posix.cc | 294 #if (defined(PTRACE_GETSIGINFO) && defined(PTRACE_SETSIGINFO)) || \ 296 int ptrace_getsiginfo = PTRACE_GETSIGINFO;
|
/external/valgrind/main/coregrind/ |
D | vgdb-invoker-ptrace.c | 312 res = ptrace (PTRACE_GETSIGINFO, pid, NULL, newsiginfo); in waitstopped()
|
/external/lldb/source/Plugins/Process/Linux/ |
D | ProcessMonitor.cpp | 795 if (PTRACE(PTRACE_GETSIGINFO, m_tid, NULL, m_info, 0)) { in Execute()
|