This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from ae830b2d9f rt: Move shm_unlink into libc new daa3fc9bff rt: Move generic implementation from sysdeps/pthread to rt new 3c79234c7a nptl: Move pthreadP.h into sysdeps directory new 412b05fec9 Add hidden prototypes for fsync, fdatasync
The 3 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: include/unistd.h | 2 + misc/fdatasync.c | 1 + misc/fsync.c | 2 +- nptl_db/thread_dbP.h | 2 +- rt/Versions | 4 + rt/aio_cancel.c | 129 +++- rt/aio_error.c | 12 +- rt/aio_fsync.c | 26 +- rt/aio_misc.c | 699 +++++++++++++++++++++- rt/aio_notify.c | 144 ++++- rt/aio_read.c | 18 +- rt/aio_read64.c | 32 +- rt/aio_suspend.c | 237 +++++++- rt/aio_write.c | 18 +- rt/aio_write64.c | 32 +- rt/lio_listio.c | 236 +++++++- rt/lio_listio64.c | 33 +- rt/timer_create.c | 156 ++++- rt/timer_delete.c | 58 +- rt/timer_getoverr.c | 33 +- rt/timer_gettime.c | 64 +- rt/timer_settime.c | 120 +++- sysdeps/generic/aio_misc.h | 83 ++- sysdeps/{pthread => htl}/timer_routines.c | 0 sysdeps/mach/hurd/fdatasync.c | 1 + sysdeps/mach/hurd/fsync.c | 1 + sysdeps/nptl/aio_misc.h | 2 +- sysdeps/nptl/dl-tls_init_tp.c | 2 +- sysdeps/nptl/fork.c | 2 +- sysdeps/nptl/gai_misc.h | 2 +- sysdeps/nptl/jmp-unwind.c | 2 +- sysdeps/nptl/libc-lockP.h | 2 +- sysdeps/nptl/libc_start_call_main.h | 2 +- {nptl => sysdeps/nptl}/pthreadP.h | 2 +- sysdeps/nptl/pthread_early_init.h | 2 +- sysdeps/nptl/setxid.h | 2 +- sysdeps/posix/spawni.c | 2 +- sysdeps/pthread/Versions | 5 - sysdeps/pthread/aio_cancel.c | 157 ----- sysdeps/pthread/aio_error.c | 48 -- sysdeps/pthread/aio_fsync.c | 57 -- sysdeps/pthread/aio_misc.c | 721 ----------------------- sysdeps/pthread/aio_misc.h | 122 ---- sysdeps/pthread/aio_notify.c | 157 ----- sysdeps/pthread/aio_read.c | 30 - sysdeps/pthread/aio_read64.c | 30 - sysdeps/pthread/aio_suspend.c | 263 --------- sysdeps/pthread/aio_write.c | 30 - sysdeps/pthread/aio_write64.c | 30 - sysdeps/pthread/lio_listio.c | 248 -------- sysdeps/pthread/lio_listio64.c | 33 -- sysdeps/pthread/timer_create.c | 166 ------ sysdeps/pthread/timer_delete.c | 68 --- sysdeps/pthread/timer_getoverr.c | 43 -- sysdeps/pthread/timer_gettime.c | 74 --- sysdeps/pthread/timer_settime.c | 131 ---- sysdeps/unix/sysv/linux/alpha/aio_cancel.c | 4 +- sysdeps/unix/sysv/linux/dl-execstack.c | 2 +- sysdeps/unix/sysv/linux/fdatasync.c | 1 + sysdeps/unix/sysv/linux/fsync.c | 1 + sysdeps/unix/sysv/linux/mq_notify.c | 2 +- sysdeps/unix/sysv/linux/s390/jmp-unwind.c | 2 +- sysdeps/unix/sysv/linux/sigprocmask.c | 2 +- sysdeps/unix/sysv/linux/sparc/aio_cancel.c | 4 +- sysdeps/unix/sysv/linux/spawni.c | 2 +- sysdeps/unix/sysv/linux/timer_create.c | 2 +- sysdeps/unix/sysv/linux/timer_routines.c | 2 +- sysdeps/unix/sysv/linux/tls-internal.h | 2 +- sysdeps/unix/sysv/linux/wordsize-64/aio_read.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/aio_write.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/lio_listio.c | 2 +- sysdeps/unix/sysv/linux/x86/longjmp.c | 2 +- 72 files changed, 2046 insertions(+), 2566 deletions(-) rename sysdeps/{pthread => htl}/timer_routines.c (100%) rename {nptl => sysdeps/nptl}/pthreadP.h (99%) delete mode 100644 sysdeps/pthread/Versions delete mode 100644 sysdeps/pthread/aio_cancel.c delete mode 100644 sysdeps/pthread/aio_error.c delete mode 100644 sysdeps/pthread/aio_fsync.c delete mode 100644 sysdeps/pthread/aio_misc.c delete mode 100644 sysdeps/pthread/aio_misc.h delete mode 100644 sysdeps/pthread/aio_notify.c delete mode 100644 sysdeps/pthread/aio_read.c delete mode 100644 sysdeps/pthread/aio_read64.c delete mode 100644 sysdeps/pthread/aio_suspend.c delete mode 100644 sysdeps/pthread/aio_write.c delete mode 100644 sysdeps/pthread/aio_write64.c delete mode 100644 sysdeps/pthread/lio_listio.c delete mode 100644 sysdeps/pthread/lio_listio64.c delete mode 100644 sysdeps/pthread/timer_create.c delete mode 100644 sysdeps/pthread/timer_delete.c delete mode 100644 sysdeps/pthread/timer_getoverr.c delete mode 100644 sysdeps/pthread/timer_gettime.c delete mode 100644 sysdeps/pthread/timer_settime.c