diff options
author | Fred Fish <fnf@specifix.com> | 1993-06-02 04:57:17 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-06-02 04:57:17 +0000 |
commit | 68feeeedb7e7ff24fc2d7ebe9201ef7c8dd0deb9 (patch) | |
tree | bcf50fe8ec5ab428ca8e2cc047d0d3953cd02aa1 | |
parent | 46fc723ce3382ed054001c7e3566221ae61d4b02 (diff) | |
download | gdb-68feeeedb7e7ff24fc2d7ebe9201ef7c8dd0deb9.zip gdb-68feeeedb7e7ff24fc2d7ebe9201ef7c8dd0deb9.tar.gz gdb-68feeeedb7e7ff24fc2d7ebe9201ef7c8dd0deb9.tar.bz2 |
* target.c (target_read_memory_partial): Like target_read_memory,
but does partial reads, such as reads that bump into the end of
the address space.
* target.h (target_read_memory_partial): Add prototype.
* valprint.c (PRINT_MAX_DEFAULT): New define, initial value 200.
* valprint.c (val_print_string): Complete rewrite to fix bug with
bumping into end of memory, avoiding unnecessarily long reads, and
fixing bug when print_max is set to 0 (unlimited print length).
* valprint.c (_initialize_valprint): Use PRINT_MAX_DEFAULT to
initialize print_max.
-rw-r--r-- | gdb/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3924cf1..1abb25e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,16 @@ +Tue Jun 1 21:22:39 1993 Fred Fish (fnf@cygnus.com) + + * target.c (target_read_memory_partial): Like target_read_memory, + but does partial reads, such as reads that bump into the end of + the address space. + * target.h (target_read_memory_partial): Add prototype. + * valprint.c (PRINT_MAX_DEFAULT): New define, initial value 200. + * valprint.c (val_print_string): Complete rewrite to fix bug with + bumping into end of memory, avoiding unnecessarily long reads, and + fixing bug when print_max is set to 0 (unlimited print length). + * valprint.c (_initialize_valprint): Use PRINT_MAX_DEFAULT to + initialize print_max. + Tue Jun 1 18:11:35 1993 Rob Savoye (rob at darkstar.cygnus.com) * configure.in: Add support for rom68k and bug boot monitors. |