glibc/include/bits
Joseph Myers 67f0aff0c6 Fix sigval namespace (bug 21944).
XPG4.2 defines the siginfo_t type, but not union sigval or its
contents (which were added in the 1993 edition of POSIX.1), resulting
in namespace violations for sigval, sival_int and sival_ptr for
signal.h and sys/wait.h for that standard because those headers
incorrectly expose those names in that case.

This patch fixes this problem.  The public type in this case is union
sigval, but various places in the headers use the sigval_t name for
it; direct uses of union sigval are already properly guarded or in
headers not in XPG4.2.  Now, sigval_t, although not a standard name,
does seem to be widely used outside glibc.  The approach taken by this
patch is to make installed headers use the name __sigval_t instead.
__sigval_t is then defined to either union sigval or union __sigval
(where union __sigval has __-prefixed member names as well), depending
on whether there are any namespace issues with the union sigval name
and its members.  In the case where union __sigval is used, sigval_t
is not defined at all, to avoid the problem of sigval_t having a C++
mangled name that depends on feature test macros.  sigval_t is still
defined by signal.h if __USE_MISC (reflecting the nonstandard nature
of that name).

Tested for x86_64.

	[BZ #21944]
	* signal/bits/types/__sigval_t.h: New file.
	* signal/Makefile (headers): Add bits/types/__sigval_t.h.
	* signal/bits/types/sigval_t.h: Include <bits/types/__sigval_t.h>
	and define sigval_t using __sigval_t.
	* include/bits/types/__sigval_t.h: New file.
	* bits/types/sigevent_t.h: Include <bits/types/__sigval_t.h>
	instead of <bits/types/__sigval_t.h>.
	(struct sigevent): Use __sigval_t instead of sigval_t.
	* bits/types/siginfo_t.h: Include <bits/types/__sigval_t.h>
	instead of <bits/types/__sigval_t.h>.
	(siginfo_t): Use __sigval_t instead of sigval_t.
	* sysdeps/unix/sysv/linux/bits/types/sigevent_t.h: Include
	<bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
	(struct sigevent): Use __sigval_t instead of sigval_t.
	* sysdeps/unix/sysv/linux/bits/types/siginfo_t.h: Include
	<bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
	(siginfo_t): Use __sigval_t instead of sigval_t.
	* signal/signal.h [__USE_MISC]: Include <bits/types/sigval_t.h>.
2017-08-16 20:33:59 +00:00
..
types Fix sigval namespace (bug 21944). 2017-08-16 20:33:59 +00:00
cmathcalls.h Update. 1998-08-03 16:47:01 +00:00
cpu-set.h Remove __need_schedparam and __cpu_set_t_defined. 2017-06-12 17:11:36 -04:00
dlfcn.h Add first fixes for conformtest for POSIX2008 2012-02-26 21:32:56 -05:00
error.h * misc/error.h: Use __const instead of const. 2007-10-07 17:29:37 +00:00
fcntl2.h * Makerules (sysd-rules): Define PTW for ptw-* files. 2007-05-24 23:55:28 +00:00
getopt_core.h getopt: eliminate __need_getopt by splitting up getopt.h. 2017-04-07 07:53:03 -04:00
getopt_ext.h getopt: eliminate __need_getopt by splitting up getopt.h. 2017-04-07 07:53:03 -04:00
getopt_posix.h getopt: eliminate __need_getopt by splitting up getopt.h. 2017-04-07 07:53:03 -04:00
locale.h New file. 2001-01-26 13:12:51 +00:00
mathcalls-helper-functions.h Split helper classification macros from mathcalls.h 2017-03-15 09:39:16 -03:00
mathcalls.h Update. 1997-06-21 02:59:26 +00:00
poll2.h Add checking versions of poll and ppoll 2012-01-08 11:55:32 -05:00
posix1_lim.h Update. 1997-06-21 02:59:26 +00:00
posix2_lim.h Update. 1997-06-21 02:59:26 +00:00
select2.h Add range checking for FD_SET, FD_CLR, and FD_ISSET 2011-09-08 19:48:47 -04:00
setjmp2.h Check for valid stack frame in longjmp. 2009-05-15 19:37:13 -07:00
socket2.h * include/bits/unistd.h: New file. 2005-03-06 00:28:34 +00:00
stab.def Update. 1997-06-21 02:59:26 +00:00
stdlib-float.h Use IS_IN internally only 2014-11-24 15:24:34 +05:30
stdlib.h * stdlib/bits/stdlib.h: New file. 2005-07-13 06:09:58 +00:00
string2.h Update. 1997-09-11 12:09:10 +00:00
string_fortified.h Remove bits/string.h. 2017-06-20 08:21:24 -04:00
strings_fortified.h Use fortify macros for b{zero,copy} along decl from strings.h 2017-01-05 15:54:13 -02:00
syslog.h New file needed since we have misc/bits/syslog.h. 2005-07-31 15:56:33 +00:00
types.h Move bits/types.h into posix/bits. 2017-02-16 09:43:50 -05:00
unistd.h * include/bits/unistd.h: New file. 2005-03-06 00:28:34 +00:00
wchar2.h * wcsmbs/bits/wchar2.h: New file. 2005-07-15 10:32:45 +00:00
wctype-wchar.h Remove __need macros from stdio.h and wchar.h. 2017-06-08 13:58:17 -04:00
xopen_lim.h Remove __need_IOV_MAX and __need_FOPEN_MAX. 2017-06-14 07:51:30 -04:00