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 | ae66c1fc9b50b1f51662edc9a2358069a2502fc3 (patch) | |
tree | ae4b7b91f4fe4a9693de354f2c784919bc204a3a /gdb/breakpoint.h | |
parent | 4abbaa29de2f88d2d40338298393d224def78312 (diff) | |
download | ppe42-binutils-ae66c1fc9b50b1f51662edc9a2358069a2502fc3.tar.gz ppe42-binutils-ae66c1fc9b50b1f51662edc9a2358069a2502fc3.zip |
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 7b359cb220..ba4d278797 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); |