This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch azanella/semctl-y2038 in repository glibc.
discards 4b7f0869cc sysv: linux: Add 64-bit time_t variant for msgctl new d0a53f7a92 sysv: linux: Add 64-bit time_t variant for msgctl new 831b2b37bf sysvipc: Split out linux struct shmid_ds new e5950a08a8 sysvipc: Remove the linux shm-pad.h file new 1ba333409b sysv: linux: Add 64-bit time_t variant for shmctl
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (4b7f0869cc) \ N -- N -- N refs/heads/azanella/semctl-y2038 (1ba333409b)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 4 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/sys/msg.h | 10 +- include/sys/shm.h | 16 ++ sysdeps/unix/sysv/linux/Makefile | 3 +- sysdeps/unix/sysv/linux/bits/msq.h | 1 - sysdeps/unix/sysv/linux/bits/shm-pad.h | 37 ----- sysdeps/unix/sysv/linux/bits/shm.h | 35 +--- .../shm-pad.h => bits/types/struct_shmid64_ds.h} | 27 ++-- .../unix/sysv/linux/bits/types/struct_shmid_ds.h | 45 ++++++ sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h | 28 ---- .../sysv/linux/hppa/bits/types/struct_shmid_ds.h | 46 ++++++ .../sysv/linux/hppa/struct_kernel_msqid64_ds.h | 2 +- .../sysv/linux/hppa/struct_kernel_shmid64_ds.h | 18 +++ .../sysv/linux/i386/struct_kernel_shmid64_ds.h | 17 ++ sysdeps/unix/sysv/linux/mips/bits/shm-pad.h | 26 --- .../sysv/linux/mips/bits/types/struct_shmid_ds.h | 49 ++++++ .../sysv/linux/mips/struct_kernel_shmid64_ds.h | 27 ++++ sysdeps/unix/sysv/linux/msgctl.c | 34 ++-- sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h | 28 ---- .../linux/powerpc/bits/types/struct_shmid_ds.h | 46 ++++++ .../powerpc/powerpc32/struct_kernel_msqid64_ds.h | 2 +- .../sysv/linux/powerpc/struct_kernel_shmid64_ds.h | 24 +++ sysdeps/unix/sysv/linux/shmctl.c | 180 +++++++++++++++++---- .../sysv/linux/sparc/bits/types/struct_shmid_ds.h | 45 ++++++ .../linux/sparc/sparc32/struct_kernel_msqid64_ds.h | 2 +- .../sysv/linux/sparc/struct_kernel_shmid64_ds.h | 23 +++ sysdeps/unix/sysv/linux/struct_kernel_msqid64_ds.h | 19 +++ 26 files changed, 568 insertions(+), 222 deletions(-) delete mode 100644 sysdeps/unix/sysv/linux/bits/shm-pad.h rename sysdeps/unix/sysv/linux/{sparc/bits/shm-pad.h => bits/types/struct_shmid64_ [...] create mode 100644 sysdeps/unix/sysv/linux/bits/types/struct_shmid_ds.h delete mode 100644 sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h create mode 100644 sysdeps/unix/sysv/linux/hppa/bits/types/struct_shmid_ds.h create mode 100644 sysdeps/unix/sysv/linux/hppa/struct_kernel_shmid64_ds.h create mode 100644 sysdeps/unix/sysv/linux/i386/struct_kernel_shmid64_ds.h delete mode 100644 sysdeps/unix/sysv/linux/mips/bits/shm-pad.h create mode 100644 sysdeps/unix/sysv/linux/mips/bits/types/struct_shmid_ds.h create mode 100644 sysdeps/unix/sysv/linux/mips/struct_kernel_shmid64_ds.h delete mode 100644 sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h create mode 100644 sysdeps/unix/sysv/linux/powerpc/bits/types/struct_shmid_ds.h create mode 100644 sysdeps/unix/sysv/linux/powerpc/struct_kernel_shmid64_ds.h create mode 100644 sysdeps/unix/sysv/linux/sparc/bits/types/struct_shmid_ds.h create mode 100644 sysdeps/unix/sysv/linux/sparc/struct_kernel_shmid64_ds.h create mode 100644 sysdeps/unix/sysv/linux/struct_kernel_msqid64_ds.h