diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-11-21 13:51:53 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-11-21 13:51:53 +0000 |
commit | 2c4a536d5dea77889ddeeddd194758f34ce9dd8a (patch) | |
tree | 4f9c3bf014243592222d76495c6ec4a6d491d972 /gdb/inf-ptrace.c | |
parent | db1d3e1b9706b64e129855a0e12eba74ca16befa (diff) | |
download | gdb-2c4a536d5dea77889ddeeddd194758f34ce9dd8a.zip gdb-2c4a536d5dea77889ddeeddd194758f34ce9dd8a.tar.gz gdb-2c4a536d5dea77889ddeeddd194758f34ce9dd8a.tar.bz2 |
* inf-ptrace.c: Don't include "regcache.h" and "gdbcmd.h".
Reorder includes a bit. Fix comment.
* Makefile.in (inf-ptrace.o): Update dependencies.
Diffstat (limited to 'gdb/inf-ptrace.c')
-rw-r--r-- | gdb/inf-ptrace.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gdb/inf-ptrace.c b/gdb/inf-ptrace.c index 2d5f09d..c2f5ead 100644 --- a/gdb/inf-ptrace.c +++ b/gdb/inf-ptrace.c @@ -1,4 +1,4 @@ -/* Low level Unix child interface to ptrace, for GDB when running under Unix. +/* Low-level child interface to ptrace. Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. @@ -21,21 +21,20 @@ Boston, MA 02111-1307, USA. */ #include "defs.h" -#include "observer.h" -#include "gdb_ptrace.h" -#include "inflow.h" -#include "inferior.h" -#include "regcache.h" #include "command.h" +#include "inferior.h" +#include "inflow.h" #include "gdbcore.h" -#include "inf-child.h" -#include "gdbcmd.h" -#include "gdb_string.h" +#include "observer.h" +#include "gdb_string.h" +#include "gdb_ptrace.h" #include "gdb_wait.h" #include <signal.h> -/* HACK: Save the ptrace ops returned by ptrace_target. */ +#include "inf-child.h" + +/* HACK: Save the ptrace ops returned by inf_ptrace_target. */ static struct target_ops *ptrace_ops_hack; static void |