This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-439-gd2d9dfb


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  d2d9dfb663f76f9b929252a88ad196c9fcacd1e1 (commit)
      from  a650b05ebee8fb8d0df03396002e680b3a79918d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d2d9dfb663f76f9b929252a88ad196c9fcacd1e1

commit d2d9dfb663f76f9b929252a88ad196c9fcacd1e1
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sat Jun 2 21:52:43 2018 +0200

    hurd: Fix shmid_ds's shm_segsz field type
    
    	* bits/shm.h (struct shmid_ds): Make shm_segsz field size_t instead of
    	int.
    	* sysdeps/gnu/bits/shm.h (struct shmid_ds): Likewise.

diff --git a/ChangeLog b/ChangeLog
index d9b1ea3..2c5c490 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-06-02  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+	* bits/shm.h (struct shmid_ds): Make shm_segsz field size_t instead of
+	int.
+	* sysdeps/gnu/bits/shm.h (struct shmid_ds): Likewise.
+
 2018-06-01  Leonardo Sandoval  <leonardo.sandoval.gonzalez@intel.com>
 
 	* benchtests/scripts/compare_string.py:	(process_results) Catch
diff --git a/bits/shm.h b/bits/shm.h
index 8e80be1..b739090 100644
--- a/bits/shm.h
+++ b/bits/shm.h
@@ -44,7 +44,7 @@ typedef unsigned short int shmatt_t;
 struct shmid_ds
   {
     struct ipc_perm shm_perm;		/* operation permission struct */
-    int shm_segsz;			/* size of segment in bytes */
+    size_t shm_segsz;			/* size of segment in bytes */
     __time_t shm_atime;			/* time of last shmat() */
     __time_t shm_dtime;			/* time of last shmdt() */
     __time_t shm_ctime;			/* time of last change by shmctl() */
diff --git a/sysdeps/gnu/bits/shm.h b/sysdeps/gnu/bits/shm.h
index eef6729..895c49b 100644
--- a/sysdeps/gnu/bits/shm.h
+++ b/sysdeps/gnu/bits/shm.h
@@ -49,7 +49,7 @@ typedef unsigned short int shmatt_t;
 struct shmid_ds
   {
     struct ipc_perm shm_perm;		/* operation permission struct */
-    int shm_segsz;			/* size of segment in bytes */
+    size_t shm_segsz;			/* size of segment in bytes */
     __time_t shm_atime;			/* time of last shmat() */
     __time_t shm_dtime;			/* time of last shmdt() */
     __time_t shm_ctime;			/* time of last change by shmctl() */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |    6 ++++++
 bits/shm.h             |    2 +-
 sysdeps/gnu/bits/shm.h |    2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]