* tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason

field in returned unwinder.
This commit is contained in:
Ulrich Weigand 2011-03-21 17:23:05 +00:00
parent 3489610d2d
commit 4a2fbb504b
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-03-21 Ulrich Weigand <uweigand@de.ibm.com>
* tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason
field in returned unwinder.
2012-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
* ada-lang.c (replace_operator_with_call): Copy also GDBARCH.

View File

@ -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);