< prev index next >

src/jdk.hotspot.agent/linux/native/libsaproc/ps_proc.c

Print this page
rev 59104 : imported patch serviceability

*** 126,140 **** // we have already attached to all thread 'pid's, just use ptrace call // to get regset now. Note that we don't cache regset upfront for processes. // Linux on x86 and sparc are different. On x86 ptrace(PTRACE_GETREGS, ...) // uses pointer from 4th argument and ignores 3rd argument. On sparc it uses // pointer from 3rd argument and ignores 4th argument - #if defined(sparc) || defined(sparcv9) - #define ptrace_getregs(request, pid, addr, data) ptrace(request, pid, addr, data) - #else #define ptrace_getregs(request, pid, addr, data) ptrace(request, pid, data, addr) - #endif #if defined(_LP64) && defined(PTRACE_GETREGS64) #define PTRACE_GETREGS_REQ PTRACE_GETREGS64 #elif defined(PTRACE_GETREGS) #define PTRACE_GETREGS_REQ PTRACE_GETREGS --- 126,136 ----
< prev index next >