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 | 02ce5c4d8fd35827ab0f77e901da69ee5cb192c2 (patch) | |
tree | a2cb639fc3cb218df0f23c097ae32c912b2d9caa /gdb/proc-events.c | |
parent | b39eae6df59dbbc67d9922e5d3381956fe65a8a3 (diff) | |
download | gdb-02ce5c4d8fd35827ab0f77e901da69ee5cb192c2.tar.gz |
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 1e7ab936b8c..5365fefde66 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 |