aboutsummaryrefslogtreecommitdiff
path: root/agent
diff options
context:
space:
mode:
authormikael <none@none>2014-04-29 22:05:10 -0700
committermikael <none@none>2014-04-29 22:05:10 -0700
commit13b3c89ec054af1bcd6d56058e8ba08ce5ff6f68 (patch)
tree9c6e16e9c6e371d1c2d8a2bbe6f3edd934c752bb /agent
parentf3890a4ff40c40924af6a69359bb3df380137ac3 (diff)
downloadjdk8u_hotspot-13b3c89ec054af1bcd6d56058e8ba08ce5ff6f68.tar.gz
8042059: Various fixes to linux/sparc
Reviewed-by: twisti, kvn
Diffstat (limited to 'agent')
-rw-r--r--agent/src/os/linux/libproc.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/agent/src/os/linux/libproc.h b/agent/src/os/linux/libproc.h
index 429e6314f..c917a938c 100644
--- a/agent/src/os/linux/libproc.h
+++ b/agent/src/os/linux/libproc.h
@@ -34,19 +34,7 @@
#include "libproc_md.h"
#endif
-#if defined(sparc) || defined(sparcv9)
-/*
- If _LP64 is defined ptrace.h should be taken from /usr/include/asm-sparc64
- otherwise it should be from /usr/include/asm-sparc
- These two files define pt_regs structure differently
-*/
-#ifdef _LP64
-#include "asm-sparc64/ptrace.h"
-#else
-#include "asm-sparc/ptrace.h"
-#endif
-
-#endif //sparc or sparcv9
+#include <linux/ptrace.h>
/************************************************************************************