summaryrefslogtreecommitdiff
path: root/system/gcc/337-gccgo-signal-sig34.patch
diff options
context:
space:
mode:
Diffstat (limited to 'system/gcc/337-gccgo-signal-sig34.patch')
-rw-r--r--system/gcc/337-gccgo-signal-sig34.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/system/gcc/337-gccgo-signal-sig34.patch b/system/gcc/337-gccgo-signal-sig34.patch
deleted file mode 100644
index 757d2f216..000000000
--- a/system/gcc/337-gccgo-signal-sig34.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- gcc-8.3.0/libgo/go/runtime/signal_gccgo.go.old 2018-01-10 05:15:52.000000000 +0000
-+++ gcc-8.3.0/libgo/go/runtime/signal_gccgo.go 2019-03-03 05:19:28.000000000 +0000
-@@ -111,7 +111,7 @@
- if sigaction(i, nil, &sa) < 0 {
- // On GNU/Linux glibc rejects attempts to call
- // sigaction with signal 32 (SIGCANCEL) or 33 (SIGSETXID).
-- if GOOS == "linux" && (i == 32 || i == 33) {
-+ if GOOS == "linux" && (i == 32 || i == 33 || i == 34) {
- return _SIG_DFL
- }
- throw("sigaction read failure")