summaryrefslogtreecommitdiff
path: root/package/gdb-microblaze/patches/patch-gdb_common_signals_c
blob: a0ef838b9eed271985352f7fdca6585d67ccd143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
* added from https://github.com/rofl0r/sabotage

--- gdb-7.8.2.orig/gdb/common/signals.c	2015-01-15 11:58:12.000000000 +0100
+++ gdb-7.8.2/gdb/common/signals.c	2016-09-21 10:34:30.009221544 +0200
@@ -350,6 +350,8 @@ gdb_signal_from_host (int hostsig)
       else if (64 <= hostsig && hostsig <= 127)
 	return (enum gdb_signal)
 	  (hostsig - 64 + (int) GDB_SIGNAL_REALTIME_64);
+      else if (hostsig == 128)
+	  return GDB_SIGNAL_UNKNOWN;
       else
 	error (_("GDB bug: target.c (gdb_signal_from_host): "
 	       "unrecognized real-time signal"));