2010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
+ * infcall.c (struct inferior_thread_state) <siginfo_gdbarch>: Fix up
+ the comment.
+ (save_inferior_thread_state): Reset tp->stop_signal.
+
+2010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
+
* infcall.c (call_function_by_hand): Remove variable
caller_state_cleanup.
CORE_ADDR stop_pc;
struct regcache *registers;
- /* Format of SIGINFO or NULL if it is not present. */
+ /* Format of SIGINFO_DATA or NULL if it is not present. */
struct gdbarch *siginfo_gdbarch;
/* The inferior format depends on SIGINFO_GDBARCH and it has a length of
}
inf_state->stop_signal = tp->stop_signal;
+ /* run_inferior_call will not use the signal due to its `proceed' call with
+ TARGET_SIGNAL_0 anyway. */
+ tp->stop_signal = TARGET_SIGNAL_0;
+
inf_state->stop_pc = stop_pc;
inf_state->registers = regcache_dup (regcache);