Joachim Schmitz wrote: > The only SA_<something> Macros I can find are SA_DATA_SITE in <sys/socket.h>, > most probably unrelated, and SA_NOCLDSTOP and SA_RESERVED_31 in <signal.h>, > and nothing that looks remotely like a replacement, signal.h attached
Thanks for looking into this. So the best choice is to accept the fact that SA_RESETHAND and SA_RESTART are missing. I'm applying this: 2010-12-24 Bruno Haible <br...@clisp.org> sigaction tests: Allow missing SA_RESETHAND and SA_RESTART. * tests/test-sigaction.c (SA_RESETHAND): Fall back to 0. (SA_RESTART): Likewise. Reported by Joachim Schmitz <j...@schmitz-digital.de>. --- tests/test-sigaction.c.orig Fri Dec 24 11:04:09 2010 +++ tests/test-sigaction.c Fri Dec 24 10:59:45 2010 @@ -34,6 +34,12 @@ #ifndef SA_ONSTACK # define SA_ONSTACK 0 #endif +#ifndef SA_RESETHAND +# define SA_RESETHAND 0 +#endif +#ifndef SA_RESTART +# define SA_RESTART 0 +#endif #ifndef SA_SIGINFO # define SA_SIGINFO 0 #endif