This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from a318262bc0 malloc: Drop __malloc_initialized from Versions new 52a5fe70a2 Use 64 bit time_t stat internally new 92f7b46510 support: Add support_create_timer new ecf2661281 linux: Only use 64-bit syscall if required for ppoll new 91cf411ad3 linux: Only use 64-bit syscall if required for pselect new 4c3df0eba5 linux: Only use 64-bit syscall if required for select new 283c6ebd5a linux: Remove supports_time64 () from clock_getres new 4ad8b4645c linux: Remove supports_time64 () from clock_gettime new 9465c3a9fb linux: Remove time64-support new 4b6551902e linux: timerfd_gettime minor cleanup new eef7913c2f linux: Only use 64-bit syscall if required for semtimedop new 2c0982eb93 linux: Only use 64-bit syscall if required for timerfd_settime new e9e912d334 linux: Only use 64-bit syscall if required for mq_timedreceive new 1faff27011 linux: Only use 64-bit syscall if required for mq_timedsend new dafab287b4 linux: Only use 64-bit syscall if required for sigtimedwait new b286eca5d4 linux: Only use 64-bit syscall if required for utimensat family new b769b0a2cb linux: Only use 64-bit syscall if required for internal futex new 6d97330d7a linux: Only use 64-bit syscall if required for clock_nanosleep
The 17 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: csu/check_fds.c | 8 +- elf/dl-load.c | 8 +- elf/dl-misc.c | 4 +- elf/dl-profile.c | 4 +- iconv/gconv_cache.c | 4 +- include/dirent.h | 2 +- include/file_change_detection.h | 6 +- include/sys/select.h | 5 ++ inet/rcmd.c | 6 +- intl/loadmsgcat.c | 4 +- io/Makefile | 4 +- io/file_change_detection.c | 10 +-- io/getdirname.c | 6 +- libio/filedoalloc.c | 2 +- libio/fileops.c | 8 +- libio/oldfileops.c | 2 +- libio/wfileops.c | 2 +- locale/loadarchive.c | 8 +- locale/loadlocale.c | 6 +- misc/Makefile | 11 +++ misc/tst-pselect.c | 120 ++++++++++++------------- misc/tst-select.c | 39 ++++---- nptl/futex-internal.c | 52 +++++++---- nscd/nscd_helper.c | 4 +- nss/nss_database.c | 4 +- rt/Makefile | 4 +- rt/tst-mqueue10-time64.c | 1 + rt/tst-mqueue10.c | 72 +++++++++++++++ support/Makefile | 1 + support/support.h | 11 +++ support/support_create_timer.c | 69 ++++++++++++++ sysdeps/nptl/futex-internal.h | 24 +++-- sysdeps/posix/dl-fileid.h | 4 +- sysdeps/posix/euidaccess.c | 4 +- sysdeps/posix/getaddrinfo.c | 18 ++-- sysdeps/posix/getcwd.c | 15 ++-- sysdeps/posix/pathconf.c | 4 +- sysdeps/posix/sysconf.c | 4 +- sysdeps/posix/tempname.c | 8 +- sysdeps/unix/sysv/linux/Makefile | 15 +++- sysdeps/unix/sysv/linux/clock_getres.c | 16 ++-- sysdeps/unix/sysv/linux/clock_gettime.c | 14 +-- sysdeps/unix/sysv/linux/clock_nanosleep.c | 46 +++++----- sysdeps/unix/sysv/linux/fdopendir.c | 4 +- sysdeps/unix/sysv/linux/fexecve.c | 4 +- sysdeps/unix/sysv/linux/microblaze/pselect32.c | 3 +- sysdeps/unix/sysv/linux/mq_timedreceive.c | 35 ++++---- sysdeps/unix/sysv/linux/mq_timedsend.c | 35 ++++---- sysdeps/unix/sysv/linux/opendir.c | 7 +- sysdeps/unix/sysv/linux/pathconf.c | 5 +- sysdeps/unix/sysv/linux/ppoll.c | 40 ++++----- sysdeps/unix/sysv/linux/pselect.c | 47 ++++++---- sysdeps/unix/sysv/linux/pselect32.c | 6 -- sysdeps/unix/sysv/linux/select.c | 72 +++++++-------- sysdeps/unix/sysv/linux/semtimedop.c | 53 ++++++----- sysdeps/unix/sysv/linux/sigtimedwait.c | 25 ++++-- sysdeps/unix/sysv/linux/time64-support.c | 23 ----- sysdeps/unix/sysv/linux/time64-support.h | 70 --------------- sysdeps/unix/sysv/linux/timerfd_gettime.c | 9 +- sysdeps/unix/sysv/linux/timerfd_settime.c | 25 +++--- sysdeps/unix/sysv/linux/tst-ppoll.c | 15 ++++ sysdeps/unix/sysv/linux/tst-sigtimedwait.c | 18 ++++ sysdeps/unix/sysv/linux/tst-timerfd.c | 34 ++++++- sysdeps/unix/sysv/linux/ttyname.h | 10 +-- sysdeps/unix/sysv/linux/ttyname_r.c | 16 ++-- sysdeps/unix/sysv/linux/utimensat.c | 31 ++++--- sysvipc/Makefile | 9 ++ sysvipc/ftok.c | 4 +- sysvipc/test-sysvsem.c | 22 +++-- time/Makefile | 9 ++ time/tst-clock_nanosleep.c | 40 +++++---- time/tzfile.c | 6 +- 72 files changed, 783 insertions(+), 553 deletions(-) create mode 100644 rt/tst-mqueue10-time64.c create mode 100644 rt/tst-mqueue10.c create mode 100644 support/support_create_timer.c delete mode 100644 sysdeps/unix/sysv/linux/time64-support.c delete mode 100644 sysdeps/unix/sysv/linux/time64-support.h