forked from Imagelibrary/binutils-gdb
gdb/gdbserver/
* server.c (handle_target_event): Use target_signal_to_host for resume_info.sig initialization. * target.h (struct thread_resume) <sig>: New comment.
This commit is contained in:
@@ -3147,7 +3147,7 @@ handle_target_event (int err, gdb_client_data client_data)
|
||||
|
||||
resume_info.thread = last_ptid;
|
||||
resume_info.kind = resume_continue;
|
||||
resume_info.sig = last_status.value.sig;
|
||||
resume_info.sig = target_signal_to_host (last_status.value.sig);
|
||||
(*the_target->resume) (&resume_info, 1);
|
||||
}
|
||||
else if (debug_threads)
|
||||
|
||||
Reference in New Issue
Block a user