This is an automated email from the git hooks/post-receive script.
git pushed a commit to reference refs/pull/139/head
in repository enlightenment.
View the commit online.
commit 193a57d6993701625d00ba183ce1dd53bdd9cc31
Author: moihack <[email protected]>
AuthorDate: Thu Jul 9 12:57:46 2026 +0200
NetBSD support: Ignore SEGV_PKUERR signal
I wrongly assumed the signal was Linux only (but also works under FreeBSD pere raster's comment),
hence just disabling in under NetBSD only.
---
src/bin/e_signals.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/bin/e_signals.c b/src/bin/e_signals.c
index d379e2012..893b5bb25 100644
--- a/src/bin/e_signals.c
+++ b/src/bin/e_signals.c
@@ -107,6 +107,8 @@ _e_siginfo(int sig, siginfo_t *info)
NAME(SEGV_ACCERR);
#ifdef __linux__
NAME(SEGV_BNDERR);
+#endif
+#ifndef __NetBSD__
NAME(SEGV_PKUERR);
#endif
NUMX(info->si_code);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.