comparison agent/src/os/linux/libproc.h @ 7994:9fae07c31641

6518907: cleanup IA64 specific code in Hotspot Summary: removed unused IA64 specific code Reviewed-by: twisti, kvn, dholmes
author morris
date Fri, 25 Jan 2013 16:50:33 -0800
parents a9fed06c01d2
children de6a9e811145 d2907f74462e
comparison
equal deleted inserted replaced
7993:76341426b645 7994:9fae07c31641
77 5. for core file, we parse ELF files and read data from them. For processes we use 77 5. for core file, we parse ELF files and read data from them. For processes we use
78 combination of ptrace and /proc calls. 78 combination of ptrace and /proc calls.
79 79
80 *************************************************************************************/ 80 *************************************************************************************/
81 81
82 #ifdef ia64
83 struct user_regs_struct {
84 /* copied from user.h which doesn't define this in a struct */
85
86 #define IA64_REG_COUNT (EF_SIZE/8+32) /* integer and fp regs */
87 unsigned long regs[IA64_REG_COUNT]; /* integer and fp regs */
88 };
89 #endif
90 82
91 #if defined(sparc) || defined(sparcv9) 83 #if defined(sparc) || defined(sparcv9)
92 #define user_regs_struct pt_regs 84 #define user_regs_struct pt_regs
93 #endif 85 #endif
94 86