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.26-275-gdd2b31d


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  dd2b31dec0c0e792bec0486d72c8a049eea4bee1 (commit)
      from  01969395db01fedcd3fb76d76654b24908e5757b (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=dd2b31dec0c0e792bec0486d72c8a049eea4bee1

commit dd2b31dec0c0e792bec0486d72c8a049eea4bee1
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 3 02:45:06 2017 +0200

    hurd: Fix p{read,write}{,v64}v2.c build
    
    	* sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
    	* sysdeps/posix/preadv64v2.c: Use off_t instead of OFF_T.
    	* sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
    	* sysdeps/posix/pwritev64v2.c: Use off_t instead of OFF_T.

diff --git a/ChangeLog b/ChangeLog
index cf6866c..a4634b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,10 @@
 	parameter.
 	* sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
 	just <bits/types.h>.
+	* sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
+	* sysdeps/posix/preadv64v2.c: Use off_t instead of OFF_T.
+	* sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
+	* sysdeps/posix/pwritev64v2.c: Use off_t instead of OFF_T.
 
 2017-09-01  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/sysdeps/posix/preadv2.c b/sysdeps/posix/preadv2.c
index d27f702..b79b7b1 100644
--- a/sysdeps/posix/preadv2.c
+++ b/sysdeps/posix/preadv2.c
@@ -23,7 +23,7 @@
 
 /* Since we define no flags for preadv2 just route to preadv.  */
 ssize_t
-preadv2 (int fd, const struct iovec *vector, int count, OFF_T offset,
+preadv2 (int fd, const struct iovec *vector, int count, off_t offset,
 	 int flags)
 {
   if (flags != 0)
diff --git a/sysdeps/posix/preadv64v2.c b/sysdeps/posix/preadv64v2.c
index ce7cb40..ab71f02 100644
--- a/sysdeps/posix/preadv64v2.c
+++ b/sysdeps/posix/preadv64v2.c
@@ -20,7 +20,7 @@
 #include <sys/uio.h>
 
 ssize_t
-preadv64v2 (int fd, const struct iovec *vector, int count, OFF_T offset,
+preadv64v2 (int fd, const struct iovec *vector, int count, off_t offset,
 	    int flags)
 {
   if (flags != 0)
diff --git a/sysdeps/posix/pwritev2.c b/sysdeps/posix/pwritev2.c
index 7ec8cbc..d746059 100644
--- a/sysdeps/posix/pwritev2.c
+++ b/sysdeps/posix/pwritev2.c
@@ -23,7 +23,7 @@
 
 /* Since we define no flags for pwritev2 just route to pwritev.  */
 ssize_t
-pwritev2 (int fd, const struct iovec *vector, int count, OFF_T offset,
+pwritev2 (int fd, const struct iovec *vector, int count, off_t offset,
 	  int flags)
 {
   if (flags != 0)
diff --git a/sysdeps/posix/pwritev64v2.c b/sysdeps/posix/pwritev64v2.c
index be98aee..bf62d74 100644
--- a/sysdeps/posix/pwritev64v2.c
+++ b/sysdeps/posix/pwritev64v2.c
@@ -21,7 +21,7 @@
 
 /* Since we define no flags for pwritev2 just route to pwritev.  */
 ssize_t
-pwritev64v2 (int fd, const struct iovec *vector, int count, OFF_T offset,
+pwritev64v2 (int fd, const struct iovec *vector, int count, off_t offset,
 	     int flags)
 {
   if (flags != 0)

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

Summary of changes:
 ChangeLog                   |    4 ++++
 sysdeps/posix/preadv2.c     |    2 +-
 sysdeps/posix/preadv64v2.c  |    2 +-
 sysdeps/posix/pwritev2.c    |    2 +-
 sysdeps/posix/pwritev64v2.c |    2 +-
 5 files changed, 8 insertions(+), 4 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]