* inf-ptrace.c: Don't include "regcache.h" and "gdbcmd.h".
Reorder includes a bit. Fix comment. * Makefile.in (inf-ptrace.o): Update dependencies.
This commit is contained in:
parent
db1d3e1b97
commit
2c4a536d5d
3 changed files with 18 additions and 13 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-11-21 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* inf-ptrace.c: Don't include "regcache.h" and "gdbcmd.h".
|
||||
Reorder includes a bit. Fix comment.
|
||||
* Makefile.in (inf-ptrace.o): Update dependencies.
|
||||
|
||||
2004-11-21 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* m68klinux-tdep.c: Include "glibc-tdep.h" and "solib-svr4.h".
|
||||
|
|
|
@ -2082,9 +2082,9 @@ inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(target_h) $(event_loop_h) \
|
|||
inflow.o: inflow.c $(defs_h) $(frame_h) $(inferior_h) $(command_h) \
|
||||
$(serial_h) $(terminal_h) $(target_h) $(gdbthread_h) $(gdb_string_h) \
|
||||
$(inflow_h)
|
||||
inf-ptrace.o: inf-ptrace.c $(defs_h) $(observer_h) $(gdb_ptrace_h) \
|
||||
$(inflow_h) $(inferior_h) $(regcache_h) $(command_h) $(gdbcore_h) \
|
||||
$(inf_child_h) $(gdbcmd_h) $(gdb_string_h) $(gdb_wait_h)
|
||||
inf-ptrace.o: inf-ptrace.c $(defs_h) $(command_h) $(inferior_h) $(inflow_h) \
|
||||
$(gdbcore_h) $(observer_h) $(gdb_string_h) $(gdb_ptrace_h) \
|
||||
$(gdb_wait_h) $(inf_child_h)
|
||||
infptrace.o: infptrace.c $(defs_h) $(command_h) $(frame_h) $(gdbcore_h) \
|
||||
$(inferior_h) $(regcache_h) $(target_h) $(gdb_assert_h) \
|
||||
$(gdb_wait_h) $(gdb_string_h) $(gdb_dirent_h) $(gdb_ptrace_h)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue