diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-08-22 19:03:41 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-08-22 19:03:41 +0000 |
commit | 8cbba7c88185e1f9775509402b24639eb3018e45 (patch) | |
tree | f2a6fe7989baea9f6c07967f4261d004efdbb801 /gdb/Makefile.in | |
parent | c5fa424560dd1098617ee6df456a7d4b4fb5f9f1 (diff) | |
download | gdb-8cbba7c88185e1f9775509402b24639eb3018e45.zip gdb-8cbba7c88185e1f9775509402b24639eb3018e45.tar.gz gdb-8cbba7c88185e1f9775509402b24639eb3018e45.tar.bz2 |
* infptrace.c: Remove #ifdef'ed out inclusion of gdb_stat.h.
Reorder includes.
(fetch_register, store_register): Remove prototypes.
(child_resume): Reorganize code and comments such that it is
grouped a bit more logically.
(attach): Explicitly compare errno against 0.
(detach): Likewise. Use perror_with_name instead of
print_sys_errmsg.
* Makefile.in (infptrace.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index fd09157..9aa6ff3 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2049,10 +2049,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) -infptrace.o: infptrace.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ - $(gdb_string_h) $(regcache_h) $(gdb_wait_h) $(command_h) \ - $(gdb_dirent_h) $(gdb_ptrace_h) $(gdbcore_h) $(gdb_stat_h) \ - $(gdb_assert_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) infrun.o: infrun.c $(defs_h) $(gdb_string_h) $(symtab_h) $(frame_h) \ $(inferior_h) $(breakpoint_h) $(gdb_wait_h) $(gdbcore_h) $(gdbcmd_h) \ $(cli_script_h) $(target_h) $(gdbthread_h) $(annotate_h) \ |