diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-10-23 00:13:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-10-23 00:13:53 +0000 |
commit | 0088c768bba3ae61ff9288b0edce4a5cdd8c2227 (patch) | |
tree | 2fb290fd890d61293613b3eff12ff16d12712baf /gdb/Makefile.in | |
parent | f24c5e49d70096a9ec475d11e77b412eefd87d2a (diff) | |
download | gdb-0088c768bba3ae61ff9288b0edce4a5cdd8c2227.zip gdb-0088c768bba3ae61ff9288b0edce4a5cdd8c2227.tar.gz gdb-0088c768bba3ae61ff9288b0edce4a5cdd8c2227.tar.bz2 |
2003-10-22 Andrew Cagney <cagney@redhat.com>
* target.c: Include "gdb_assert.h" (target_read): Call
"target_read_partial", not "target_write_partial".
(default_read_partial, default_write_partial): New function.
(target_read_partial, target_write_partial): Simplify, assume that
there is always a read/write method.
(update_current_target, add_target): Always set "to_read_partial"
and "to_write_partial".
(target_write, target_read): Fail on a zero byte transfer.
* Makefile.in (target.o): Update dependencies.
* target.h: Update copyright date.
(target_object): Fix typo.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 247d8d1..4628a7f 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2365,7 +2365,7 @@ symtab.o: symtab.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(gdbcore_h) \ $(block_h) $(dictionary_h) $(gdb_string_h) $(gdb_stat_h) $(cp_abi_h) target.o: target.c $(defs_h) $(gdb_string_h) $(target_h) $(gdbcmd_h) \ $(symtab_h) $(inferior_h) $(bfd_h) $(symfile_h) $(objfiles_h) \ - $(gdb_wait_h) $(dcache_h) $(regcache_h) + $(gdb_wait_h) $(dcache_h) $(regcache_h) $(gdb_assert_h) thread.o: thread.c $(defs_h) $(symtab_h) $(frame_h) $(inferior_h) \ $(environ_h) $(value_h) $(target_h) $(gdbthread_h) $(command_h) \ $(gdbcmd_h) $(regcache_h) $(gdb_h) $(gdb_string_h) $(ui_out_h) |