mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-01-30 21:42:18 +00:00
Fix host signal vs gdb signal mixup in gdb/darwin-nat.c
Building in C++ mode caught a bug here: .../src/gdb/darwin-nat.c: In function 'ptid_t darwin_decode_message(mach_msg_header_t*, darwin_thread_t**, inferior**, target_waitstatus*)': .../src/gdb/darwin-nat.c:1016:25: error: invalid conversion from 'int' to 'gdb_signal' [-fpermissive] status->value.sig = WTERMSIG (wstatus); ^ gdb/ChangeLog: 2016-04-20 Pedro Alves <palves@redhat.com> * darwin-nat.c (darwin_decode_message): Use gdb_signal_from_host.
This commit is contained in:
parent
d9436c7c71
commit
5ae0055212
@ -1,3 +1,7 @@
|
||||
2016-04-20 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* darwin-nat.c (darwin_decode_message): Use gdb_signal_from_host.
|
||||
|
||||
2016-04-20 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* aarch64-tdep.c (aarch64_record_load_store): Change type of
|
||||
|
@ -1013,7 +1013,7 @@ darwin_decode_message (mach_msg_header_t *hdr,
|
||||
else
|
||||
{
|
||||
status->kind = TARGET_WAITKIND_SIGNALLED;
|
||||
status->value.sig = WTERMSIG (wstatus);
|
||||
status->value.sig = gdb_signal_from_host (WTERMSIG (wstatus));
|
||||
}
|
||||
|
||||
inferior_debug (4, _("darwin_wait: pid=%d exit, status=0x%x\n"),
|
||||
|
Loading…
x
Reference in New Issue
Block a user