26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
From 7feb681596c4cfa34c769505058aa5bdf31c5131 Mon Sep 17 00:00:00 2001
|
|
From: "A. Wilcox" <AWilcox@Wilcox-Tech.com>
|
|
Date: Sun, 30 Aug 2020 17:59:45 +0200
|
|
Subject: [PATCH] gcc-go: Fix handling of signal 34 on musl
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Taken from Adélie Linux.
|
|
---
|
|
libgo/mksigtab.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libgo/mksigtab.sh b/libgo/mksigtab.sh
|
|
index bea8739957e..3876002efab 100644
|
|
--- a/libgo/mksigtab.sh
|
|
+++ b/libgo/mksigtab.sh
|
|
@@ -86,7 +86,7 @@ checksig _SIGPWR '{_SigNotify, "SIGPWR: power failure restart"}'
|
|
checksig _SIGEMT '{_SigThrow, "SIGEMT: emulate instruction executed"}'
|
|
checksig _SIGINFO '{_SigNotify, "SIGINFO: status request from keyboard"}'
|
|
checksig _SIGTHR '{_SigNotify, "SIGTHR: reserved"}'
|
|
-checksig _SIGPOLL '{_SigNotify, "SIGPOLL: pollable event occurred"}'
|
|
+#checksig _SIGPOLL '{_SigNotify, "SIGPOLL: pollable event occurred"}'
|
|
checksig _SIGWAITING '{_SigNotify, "SIGWAITING: reserved signal no longer used by"}'
|
|
checksig _SIGLWP '{_SigNotify, "SIGLWP: reserved signal no longer used by"}'
|
|
checksig _SIGFREEZE '{_SigNotify, "SIGFREEZE: special signal used by CPR"}'
|