diff options
author | Mark Alexander <marka@cygnus> | 1996-07-12 04:18:13 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1996-07-12 04:18:13 +0000 |
commit | f3138a7ca1e234227972f39b427a6ed6b27160b7 (patch) | |
tree | 230d2e905d4665b02c49dab08f44e1797e2f9028 | |
parent | 4853b6d11ca13dc6edc9138a59225c4a9707bf96 (diff) | |
download | gdb-f3138a7ca1e234227972f39b427a6ed6b27160b7.zip gdb-f3138a7ca1e234227972f39b427a6ed6b27160b7.tar.gz gdb-f3138a7ca1e234227972f39b427a6ed6b27160b7.tar.bz2 |
* monitor.c (monitor_write_memory, monitor_read_memory_single):
Disable use of "long long" memory read/write commands; can't
use them because we hold the values to read/write in an int
variable, and because strtoul fails on values that exceed the
size of a long. This fixes breakpoint problems on MON960.
-rw-r--r-- | gdb/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4f207be..ba3ab02 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +Thu Jul 11 21:13:21 1996 Mark Alexander <marka@cygnus.com> + + * monitor.c (monitor_write_memory, monitor_read_memory_single): + Disable use of "long long" memory read/write commands; can't + use them because we hold the values to read/write in an int + variable, and because strtoul fails on values that exceed the + size of a long. This fixes breakpoint problems on MON960. + Thu Jul 11 11:39:31 1996 Fred Fish <fnf@cygnus.com> * config/m68k/xm-hp300hpux.h (HAVE_MMAP): Remove definition. |