diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-03-21 17:23:05 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2011-03-21 17:23:05 +0000 |
commit | 4a2fbb504b854c32aa38572515a48410f81a5ce6 (patch) | |
tree | eb643f84af32bb8ae115cb367feb923cc61dafd0 /gdb/tramp-frame.c | |
parent | 3489610d2dea02c6a2863fc5f84c9b918faf8c4d (diff) | |
download | gdb-4a2fbb504b854c32aa38572515a48410f81a5ce6.zip gdb-4a2fbb504b854c32aa38572515a48410f81a5ce6.tar.gz gdb-4a2fbb504b854c32aa38572515a48410f81a5ce6.tar.bz2 |
* tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason
field in returned unwinder.
Diffstat (limited to 'gdb/tramp-frame.c')
-rw-r--r-- | gdb/tramp-frame.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/tramp-frame.c b/gdb/tramp-frame.c index d4d3a45..c7b1d9f 100644 --- a/gdb/tramp-frame.c +++ b/gdb/tramp-frame.c @@ -163,6 +163,7 @@ tramp_frame_prepend_unwinder (struct gdbarch *gdbarch, unwinder->type = tramp_frame->frame_type; unwinder->unwind_data = data; unwinder->sniffer = tramp_frame_sniffer; + unwinder->stop_reason = default_frame_unwind_stop_reason; unwinder->this_id = tramp_frame_this_id; unwinder->prev_register = tramp_frame_prev_register; frame_unwind_prepend_unwinder (gdbarch, unwinder); |