diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/target.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2c72218..d59c0fb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2001-02-16 Mark Kettenis <kettenis@gnu.org> + + * target.h (target_fetch_registers): Fix comment. + 2001-02-15 Andrew Cagney <ac131313@redhat.com> * f-exp.y: Include <ctype.h>. diff --git a/gdb/target.h b/gdb/target.h index a68e899..8cb1370 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -599,7 +599,7 @@ extern void target_detach (char *, int); #define target_post_wait(pid, status) \ (*current_target.to_post_wait) (pid, status) -/* Fetch register REGNO, or all regs if regno == -1. No result. */ +/* Fetch at least register REGNO, or all regs if regno == -1. No result. */ #define target_fetch_registers(regno) \ (*current_target.to_fetch_registers) (regno) |