diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-03-27 02:01:11 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-03-27 02:01:11 +0000 |
commit | 37de36c6ed76ef0b5f31cff8fd5089dab7c3d136 (patch) | |
tree | e0f4efce9cfec93ff3214d754e1e3c4d2530c7bc /gdb/proc-events.c | |
parent | eb4a6e4f4b7f30d8a6220d7fd807973077221faf (diff) | |
download | gdb-37de36c6ed76ef0b5f31cff8fd5089dab7c3d136.zip gdb-37de36c6ed76ef0b5f31cff8fd5089dab7c3d136.tar.gz gdb-37de36c6ed76ef0b5f31cff8fd5089dab7c3d136.tar.bz2 |
Add AIX5 procfs support.
Diffstat (limited to 'gdb/proc-events.c')
-rw-r--r-- | gdb/proc-events.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/proc-events.c b/gdb/proc-events.c index 1e7ab93..5365fef 100644 --- a/gdb/proc-events.c +++ b/gdb/proc-events.c @@ -40,8 +40,12 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <sys/types.h> #include <sys/procfs.h> +#ifdef HAVE_SYS_SYSCALL_H #include <sys/syscall.h> +#endif +#ifdef HAVE_SYS_FAULT_H #include <sys/fault.h> +#endif /* Much of the information used in the /proc interface, particularly for printing status information, is kept as tables of structures of the |