diff options
author | Pedro Alves <palves@redhat.com> | 2014-09-25 16:31:04 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2014-09-25 16:31:04 +0100 |
commit | 7f89fd6519250f85f7b3f6c58beef1fc0ffd9a44 (patch) | |
tree | 298a81de151da05b0ff95ec36e14d4ff4d47183d /gdb/infrun.c | |
parent | 0da8cb88ed43e56fcb6d8d5e067b4cd618bbbc8e (diff) | |
download | gdb-7f89fd6519250f85f7b3f6c58beef1fc0ffd9a44.zip gdb-7f89fd6519250f85f7b3f6c58beef1fc0ffd9a44.tar.gz gdb-7f89fd6519250f85f7b3f6c58beef1fc0ffd9a44.tar.bz2 |
infrun.c: comment/typo fixes
gdb/
2014-09-25 Pedro Alves <palves@redhat.com>
* infrun.c (stepping_past_instruction_at)
(clear_exit_convenience_vars): Point at infrun.h instead of
inferior.h.
(handle_signal_stop): Fix typo.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 3725f2d..dc696e9 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -1026,7 +1026,7 @@ clear_step_over_info (void) step_over_info.address = 0; } -/* See inferior.h. */ +/* See infrun.h. */ int stepping_past_instruction_at (struct address_space *aspace, @@ -4003,7 +4003,7 @@ handle_signal_stop (struct execution_control_state *ecs) watchpoint expression. We do this by single-stepping the target. - It may not be necessary to disable the watchpoint to stop over + It may not be necessary to disable the watchpoint to step over it. For example, the PA can (with some kernel cooperation) single step over a watchpoint without disabling the watchpoint. @@ -7124,7 +7124,7 @@ save_inferior_ptid (void) return make_cleanup (restore_inferior_ptid, saved_ptid_ptr); } -/* See inferior.h. */ +/* See infrun.h. */ void clear_exit_convenience_vars (void) |