]> git.eshelyaron.com Git - emacs.git/commitdiff
Port alternate signal stack to upcoming glibc 2.34 emacs-25
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 9 Mar 2021 19:22:59 +0000 (11:22 -0800)
committerStefan Kangas <stefan@marxist.se>
Fri, 15 Jul 2022 12:03:06 +0000 (14:03 +0200)
* src/sysdep.c (sigsegv_stack): Increase size to 64 KiB and align
it to max_align_t.  This copies from Gnulib’s c-stack.c, and works
around a portability bug in draft glibc 2.34, which no longer
defines SIGSTKSZ when _GNU_SOURCE is defined.

(cherry picked from commit f97e07ea807cc6d38774a3888a15091b20645ac6)

src/sysdep.c

index 2c80280bc740a2c41d99141565e4717fca99767a..fa41ed70c865880046765c28f2a797a5f6faab23 100644 (file)
@@ -1624,7 +1624,15 @@ handle_arith_signal (int sig)
 
 /* Alternate stack used by SIGSEGV handler below.  */
 
-static unsigned char sigsegv_stack[SIGSTKSZ];
+/* Storage for the alternate signal stack.
+   64 KiB is not too large for Emacs, and is large enough
+   for all known platforms.  Smaller sizes may run into trouble.
+   For example, libsigsegv 2.6 through 2.8 have a bug where some
+   architectures use more than the Linux default of an 8 KiB alternate
+   stack when deciding if a fault was caused by stack overflow.  */
+static max_align_t sigsegv_stack[(64 * 1024
+                                 + sizeof (max_align_t) - 1)
+                                / sizeof (max_align_t)];
 
 
 /* Return true if SIGINFO indicates a stack overflow.  */