diff options
author | Grace Sainsbury <graces@redhat.com> | 2002-08-09 16:41:25 +0000 |
---|---|---|
committer | Grace Sainsbury <graces@redhat.com> | 2002-08-09 16:41:25 +0000 |
commit | 3c3bea1c7eb9586fd6d80885c8a972e10401f3f1 (patch) | |
tree | 8437bdc196d263322117a016ee895eb27b23efc3 /gdb/ChangeLog | |
parent | 5d1d95de0ef952f316f5cd5c5ced2fc46ea082a9 (diff) | |
download | gdb-3c3bea1c7eb9586fd6d80885c8a972e10401f3f1.zip gdb-3c3bea1c7eb9586fd6d80885c8a972e10401f3f1.tar.gz gdb-3c3bea1c7eb9586fd6d80885c8a972e10401f3f1.tar.bz2 |
* remote.c: (remote_wait, remote_async_wait): Add check for awatch
T-packets; the 'a' is not taken as a register number.
(remote_check_watch_resources, remote_stopped_by_watchpoint)
(remote_stopped_data_address): New functions; add to target
vector.
(remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
prototypes to match other implementations of this
function. replace integer argument with pointer -- the length
field in the Z-packet is the length of what is pointed to or 1 if
pointer is null. Add to target vector.
(remote_insert_watchpoint, remote_remove_watchpoint): Add to
target vector.
From Mark Salter:
* remote.c (remote_wait): Add support to extract optional
watchpoint information from T-packet. Ignore unrecognized
optional info in T-packet.
(remote_async_wait): Ditto.
doc:
From Mark Salter:
* gdb.texinfo (Protocol): Document T packet extension to
allow watchpoint address reporting.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 673a629..659e8b0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,24 @@ +2002-08-09 Grace Sainsbury <graces@redhat.com> + + * remote.c: (remote_wait, remote_async_wait): Add check for awatch + T-packets; the 'a' is not taken as a register number. + (remote_check_watch_resources, remote_stopped_by_watchpoint) + (remote_stopped_data_address): New functions; add to target + vector. + (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change + prototypes to match other implementations of this + function. replace integer argument with pointer -- the length + field in the Z-packet is the length of what is pointed to or 1 if + pointer is null. Add to target vector. + (remote_insert_watchpoint, remote_remove_watchpoint): Add to + target vector. + + From Mark Salter: + * remote.c (remote_wait): Add support to extract optional + watchpoint information from T-packet. Ignore unrecognized + optional info in T-packet. + (remote_async_wait): Ditto. + 2002-08-09 Corinna Vinschen <vinschen@redhat.com> * cli/cli-dump.c: Change fopen modes to use binary open modes @@ -22,9 +43,10 @@ 2002-08-08 Grace Sainsbury <graces@redhat.com> - * remote.c (remote_wait, remote_async_wait): Change thread_num - ULONGEST. - * (unpack_varlen_hex): Change result prameter to ULONGEST *. + * remote.c (remote_wait, remote_async_wait): Change + thread_num from int to ULONGEST. + (unpack_varlen_hex): Change result parameter from + int * to ULONGEST *. 2002-08-08 Andrew Cagney <ac131313@redhat.com> |