glibc/time
Zack Weinberg 05b68e14b1 Installed-header hygiene (BZ#20366): time.h types.
Many headers are expected to expose a subset of the type definitions
in time.h.  time.h has a whole bunch of messy logic for conditionally
defining some its types and structs, but, as best I can tell, this
has never worked 100%.  In particular, __need_timespec is ineffective
if _TIME_H has already been defined, which means that if you compile

  #include <time.h>
  #include <sched.h>

with e.g. -fsyntax-only -std=c89 -Wall -Wsystem-headers, you will get

In file included from test.c:2:0:
/usr/include/sched.h:74:57: warning: "struct timespec" declared inside
  parameter list will not be visible outside of this definition or declaration
 extern int sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __THROW;
                                                         ^~~~~~~~

And if you want to _use_ sched_rr_get_interval in a TU compiled that
way, you're hosed.

This patch replaces all of that with small bits/types/TYPE.h headers
as introduced earlier.  time.h and bits/time.h are now *much* simpler,
and a lot of other headers are slightly simpler.

	* time/time.h, bits/time.h, sysdeps/unix/sysv/linux/bits/time.h:
	Remove all logic conditional on __need macros.  Move all the
	conditionally defined types to their own headers...
	* time/bits/types/clock_t.h: Define clock_t here.
	* time/bits/types/clockid_t.h: Define clockid_t here.
	* time/bits/types/struct_itimerspec.h: Define struct itimerspec here.
	* time/bits/types/struct_timespec.h: Define struct timespec here.
	* time/bits/types/struct_timeval.h: Define struct timeval here.
	* time/bits/types/struct_tm.h: Define struct tm here.
	* time/bits/types/time_t.h: Define time_t here.
	* time/bits/types/timer_t.h: Define timer_t here.
	* time/Makefile: Install the new headers.

	* bits/resource.h, io/fcntl.h, io/sys/poll.h, io/sys/stat.h
	* io/utime.h, misc/sys/select.h, posix/sched.h, posix/sys/times.h
	* posix/sys/types.h, resolv/netdb.h, rt/aio.h, rt/mqueue.h
	* signal/signal.h, pthread/semaphore.h, sysdeps/nptl/pthread.h
	* sysdeps/unix/sysv/linux/alpha/bits/resource.h
	* sysdeps/unix/sysv/linux/alpha/sys/acct.h
	* sysdeps/unix/sysv/linux/bits/resource.h
	* sysdeps/unix/sysv/linux/bits/timex.h
	* sysdeps/unix/sysv/linux/mips/bits/resource.h
	* sysdeps/unix/sysv/linux/net/ppp_defs.h
	* sysdeps/unix/sysv/linux/sparc/bits/resource.h
	* sysdeps/unix/sysv/linux/sys/acct.h
	* sysdeps/unix/sysv/linux/sys/timerfd.h
	* sysvipc/sys/msg.h, sysvipc/sys/sem.h, sysvipc/sys/shm.h
	* time/sys/time.h, time/sys/timeb.h
	Use the new bits/types headers.

	* include/time.h: Remove __need logic.
	* include/bits/time.h
	* include/bits/types/clock_t.h, include/bits/types/clockid_t.h
	* include/bits/types/time_t.h, include/bits/types/timer_t.h
	* include/bits/types/struct_itimerspec.h
	* include/bits/types/struct_timespec.h
	* include/bits/types/struct_timeval.h
	* include/bits/types/struct_tm.h:
	New wrapper headers.
2016-09-23 08:43:56 -04:00
..
bits/types Installed-header hygiene (BZ#20366): time.h types. 2016-09-23 08:43:56 -04:00
sys Installed-header hygiene (BZ#20366): time.h types. 2016-09-23 08:43:56 -04:00
adjtime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
alt_digit.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
asctime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bug-asctime.c
bug-asctime_r.c
bug-getdate1.c * time/bug-getdate1.c (do_test): Don't use century values which 2007-12-12 18:23:00 +00:00
bug-mktime1.c
clock.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
clocktest.c Define CLOCKS_PER_SEC type to the type clock_t 2015-01-06 04:59:13 -08:00
ctime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ctime_r.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
datemsk
Depend
difftime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
dysize.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
era.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ftime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getdate.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getitimer.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gettimeofday.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gmtime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lc-time-cleanup.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
localtime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
Makefile Installed-header hygiene (BZ#20366): time.h types. 2016-09-23 08:43:56 -04:00
mktime.c Fix build failures with -DDEBUG. 2016-01-15 11:07:41 -07:00
offtime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setitimer.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
settimeofday.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
stime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
strftime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
strftime_l.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
strptime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
strptime_l.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
test_time.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
time.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
time.h Installed-header hygiene (BZ#20366): time.h types. 2016-09-23 08:43:56 -04:00
timegm.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
timespec_get.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-ftime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-ftime_l.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-getdate.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-mktime.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-mktime2.c Use TIME_T_MAX and TIME_T_MIN in tst-mktime2.c 2016-01-14 16:35:40 -08:00
tst-mktime3.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-posixtz.c Replace %ld with %jd and cast to intmax_t 2014-12-30 08:09:43 -08:00
tst-strftime.c Fix BZ #18985 -- out of range data to strftime() causes a segfault 2015-09-26 13:27:48 -07:00
tst-strptime-whitespace.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-strptime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-strptime2.c time: in strptime(), make %z accept [+-]HH:MM tz [BZ #17887] 2015-09-18 01:17:15 -04:00
tst-strptime3.c time: ensure failing strptime() tests are reported correctly 2015-03-06 06:06:26 -05:00
tst-tzname.c Force rereading TZDEFRULES after it was used to set DST rules only (bug #19253) 2016-01-11 16:42:25 +01:00
tst_wcsftime.c
tzfile.c Force rereading TZDEFRULES after it was used to set DST rules only (bug #19253) 2016-01-11 16:42:25 +01:00
tzset.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
Versions Sort Versions files 2013-02-17 16:34:04 +01:00
wcsftime.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
wcsftime_l.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00