summaryrefslogtreecommitdiff
path: root/user/erlang/safe-signal-handling.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-02 19:20:32 +0000
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-02 19:20:32 +0000
commit72865279688728083f227cdf67ceec5ff57ea5f2 (patch)
tree850fb0095e225ef767010b24a3119b04e56879fa /user/erlang/safe-signal-handling.patch
parentdc376c71e9700976cfbcbf96243585726d4691cd (diff)
downloadpackages-72865279688728083f227cdf67ceec5ff57ea5f2.tar.gz
packages-72865279688728083f227cdf67ceec5ff57ea5f2.tar.bz2
packages-72865279688728083f227cdf67ceec5ff57ea5f2.tar.xz
packages-72865279688728083f227cdf67ceec5ff57ea5f2.zip
user/erlang: bump to 22.1.1
Diffstat (limited to 'user/erlang/safe-signal-handling.patch')
-rw-r--r--user/erlang/safe-signal-handling.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/user/erlang/safe-signal-handling.patch b/user/erlang/safe-signal-handling.patch
deleted file mode 100644
index 0996069ba..000000000
--- a/user/erlang/safe-signal-handling.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- otp-OTP-21.2.6.orig/erts/emulator/hipe/hipe_x86_signal.c
-+++ otp-OTP-21.2.6/erts/emulator/hipe/hipe_x86_signal.c
-@@ -159,16 +159,10 @@
-
- #if !(defined(__GLIBC__) || defined(__DARWIN__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__sun__))
- /*
-- * Unknown libc -- assume musl. Note: musl deliberately does not provide a musl-specific
-- * feature test macro, so we cannot check for it.
-- *
-- * sigaction is a weak alias for __sigaction, which is a wrapper for __libc_sigaction.
-- * There are libc-internal calls to __libc_sigaction which install handlers, so we must
-- * override __libc_sigaction rather than __sigaction.
-+ * Unknown libc -- assume musl. Also assume signal delivery on musl is safe.
- */
--#define NEXT_SIGACTION "__libc_sigaction"
--#define LIBC_SIGACTION __libc_sigaction
--#define OVERRIDE_SIGACTION
-+#undef NEXT_SIGACTION
-+#undef OVERRIDE_SIGACTION
- #ifndef _NSIG
- #define _NSIG NSIG
- #endif