bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 2/4] Use SA_ONSTACK even if SA_SIGINFO is unavailable.


From: Bruno Haible
Subject: Re: [PATCH 2/4] Use SA_ONSTACK even if SA_SIGINFO is unavailable.
Date: Tue, 23 Dec 2008 01:00:31 +0100
User-agent: KMail/1.9.9

The discussion on 2008-11-05 led to an agreement how to best fix this, but
no one actually committed the fix. Now done as follows:


2008-12-22  Ingo Weinhold  <address@hidden>  (tiny change)
            Eric Blake  <address@hidden>
            Paolo Bonzini  <address@hidden>
            Bruno Haible  <address@hidden>

        Make c-stack work on Haiku.
        * lib/c-stack.c (SA_ONSTACK): Define fallback.
        (c_stack_action): Use SA_ONSTACK flag.

--- lib/c-stack.c.orig  2008-12-23 00:53:04.000000000 +0100
+++ lib/c-stack.c       2008-12-23 00:38:43.000000000 +0100
@@ -82,6 +82,9 @@
 # define SIGACTION_WORKS 1
 #else
 # define SIGACTION_WORKS 0
+# ifndef SA_ONSTACK
+#  define SA_ONSTACK 0
+# endif
 #endif
 
 extern char *program_name;
@@ -317,7 +320,7 @@
   act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
   act.sa_sigaction = segv_handler;
 # else
-  act.sa_flags = SA_NODEFER | SA_RESETHAND;
+  act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND;
   act.sa_handler = die;
 # endif
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]