Mention effects of _POSIX_PTHREAD_SEMANTICS on Solaris.
[gnulib.git] / doc / posix-functions / sigwait.texi
1 @node sigwait
2 @section @code{sigwait}
3 @findex sigwait
4
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigwait.html}
6
7 Gnulib module: ---
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @end itemize
12
13 Portability problems not fixed by Gnulib:
14 @itemize
15 @item
16 This function is missing on some platforms:
17 mingw, BeOS.
18 @item
19 This function has an incompatible declaration on some platforms:
20 Solaris 10 (when @code{_POSIX_PTHREAD_SEMANTICS} is not defined).
21 @item
22 On Linux/glibc platforms before the advent of NPTL, signals could only be
23 sent to one particular thread.  In POSIX, signals are sent to the entire
24 process and executed by any thread of the process that happens to have the
25 particular signal currently unblocked.
26 @end itemize