diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2003-01-15 00:48:38 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2003-01-15 00:48:38 +0000 |
commit | e3d463471c97c3b40eb27f235eefd1337568cf5e (patch) | |
tree | 7705a10358ecddc0fb3e1901c14250af344d4095 /gdb/breakpoint.h | |
parent | 8e5e349fcae6a951a5ca1d55f1523be659b07e3f (diff) | |
download | gdb-e3d463471c97c3b40eb27f235eefd1337568cf5e.tar.gz |
2003-01-14 Elena Zannoni <ezannoni@redhat.com>
* breakpoint.c (until_break_command): Add new argument. Use it to
decide whether to stop only at the current frame or not.
* breakpoint.h (until_break_command): Update prototype.
* infcmd.c (until_command): Add new argument to until_break_command
call.
(advance_command): New function.
(_initialize_infcmd): Update help string for 'until' command.
Add new 'advance' command.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 7b359cb2206..ba4d2787970 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -534,7 +534,7 @@ extern int deprecated_frame_in_dummy (struct frame_info *); extern int breakpoint_thread_match (CORE_ADDR, ptid_t); -extern void until_break_command (char *, int); +extern void until_break_command (char *, int, int); extern void breakpoint_re_set (void); |