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 61a26a4bd6 sysvipc: Split out linux struct semid_ds discards e86a547a35 sysv: linux: Add 64-bit time_t variant for semctl new 100689aabc sysv: linux: Add 64-bit time_t variant for semctl new d521e51cb9 sysvipc: Split out linux struct semid_ds new 896dd219d9 sysvipc: Remove the linux sem-pad.h file new 4b7f0869cc sysv: linux: Add 64-bit time_t variant for msgctl
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 (61a26a4bd6) \ N -- N -- N refs/heads/azanella/semctl-y2038 (4b7f0869cc)
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 | 8 + sysdeps/unix/sysv/linux/Makefile | 2 +- sysdeps/unix/sysv/linux/bits/msq-pad.h | 31 ---- sysdeps/unix/sysv/linux/bits/msq.h | 1 + .../{struct_msqid_ds.h => struct_msqid64_ds.h} | 29 +--- .../unix/sysv/linux/bits/types/struct_msqid_ds.h | 28 ++-- sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h | 26 --- .../linux/{ => hppa}/bits/types/struct_msqid_ds.h | 30 ++-- .../sysv/linux/hppa/struct_kernel_msqid64_ds.h | 18 +++ .../sysv/linux/i386/struct_kernel_msqid64_ds.h | 18 +++ .../linux/{ => mips}/bits/types/struct_msqid_ds.h | 39 +++-- .../sysv/linux/mips/struct_kernel_msqid64_ds.h | 33 ++++ sysdeps/unix/sysv/linux/msgctl.c | 177 +++++++++++++++++---- sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h | 26 --- .../{ => powerpc}/bits/types/struct_msqid_ds.h | 30 ++-- .../powerpc/powerpc32/struct_kernel_msqid64_ds.h | 18 +++ sysdeps/unix/sysv/linux/semctl.c | 27 ++-- sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h | 26 --- .../linux/{ => sparc}/bits/types/struct_msqid_ds.h | 30 ++-- .../linux/sparc/sparc32/struct_kernel_msqid64_ds.h | 18 +++ .../msq-pad.h => x86/bits/types/struct_semid_ds.h} | 29 ++-- 21 files changed, 371 insertions(+), 273 deletions(-) delete mode 100644 sysdeps/unix/sysv/linux/bits/msq-pad.h copy sysdeps/unix/sysv/linux/bits/types/{struct_msqid_ds.h => struct_msqid64_ds.h} (62%) delete mode 100644 sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h copy sysdeps/unix/sysv/linux/{ => hppa}/bits/types/struct_msqid_ds.h (71%) create mode 100644 sysdeps/unix/sysv/linux/hppa/struct_kernel_msqid64_ds.h create mode 100644 sysdeps/unix/sysv/linux/i386/struct_kernel_msqid64_ds.h copy sysdeps/unix/sysv/linux/{ => mips}/bits/types/struct_msqid_ds.h (63%) create mode 100644 sysdeps/unix/sysv/linux/mips/struct_kernel_msqid64_ds.h delete mode 100644 sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h copy sysdeps/unix/sysv/linux/{ => powerpc}/bits/types/struct_msqid_ds.h (71%) create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc32/struct_kernel_msqid64_ds.h delete mode 100644 sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h copy sysdeps/unix/sysv/linux/{ => sparc}/bits/types/struct_msqid_ds.h (71%) create mode 100644 sysdeps/unix/sysv/linux/sparc/sparc32/struct_kernel_msqid64_ds.h rename sysdeps/unix/sysv/linux/{mips/bits/msq-pad.h => x86/bits/types/struct_semid [...]