diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-06 15:15:34 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-06 15:15:34 +0000 |
commit | 91104499cbd9014073c2808f646f967e529b8ec6 (patch) | |
tree | 4d10a7c014577c60e68e81a89f9f7616add3fe83 /gdb/breakpoint.c | |
parent | 4b2c5b4af619c40b106d43222fbedf380fc16cb7 (diff) | |
download | gdb-91104499cbd9014073c2808f646f967e529b8ec6.zip gdb-91104499cbd9014073c2808f646f967e529b8ec6.tar.gz gdb-91104499cbd9014073c2808f646f967e529b8ec6.tar.bz2 |
* gdbarch.sh (GET_LONGJMP_TARGET): Replace by gdbarch_get_longjmp_target.
* infrun.c (handle_inferior_event): Likewise.
* gdbarch.sh (GET_LONGJMP_TARGET_P): Replace by
gdbarch_get_longjmp_target_p.
* breakpoint.c (breakpoint_re_set): Likewise.
* infrun.c (handle_inferior_event): Likewise.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 867cc6d..730922c 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -7444,7 +7444,7 @@ breakpoint_re_set (void) set_language (save_language); input_radix = save_input_radix; - if (GET_LONGJMP_TARGET_P ()) + if (gdbarch_get_longjmp_target_p (current_gdbarch)) { create_longjmp_breakpoint ("longjmp"); create_longjmp_breakpoint ("_longjmp"); |