+2008-12-06 Bruno Haible <bruno@clisp.org>
+
+ * lib/c-stack.h (c_stack_action): Clarify possible side effects.
+ Suggested by Eric Blake.
+
2008-12-06 Bruno Haible <bruno@clisp.org>
Fix a c-stack test failure on MacOS X.
ACTION must be async-signal-safe. ACTION together with its callees
must not require more than SIGSTKSZ bytes of stack space. Also,
ACTION should not call longjmp, because this implementation does
- not guarantee that it is safe to return to the original stack. */
+ not guarantee that it is safe to return to the original stack.
+
+ This function may install a handler for the SIGSEGV signal or for the SIGBUS
+ signal or exercise other system dependent exception handling APIs. */
extern int c_stack_action (void (* /*action*/) (int));