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-277-g2263ca7


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  2263ca7ce8a824f53debcc724bd21cd7099e1161 (commit)
      from  ed95bf5638748068ef05ccbaa0a008b50ebecb42 (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=2263ca7ce8a824f53debcc724bd21cd7099e1161

commit 2263ca7ce8a824f53debcc724bd21cd7099e1161
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 3 03:03:40 2017 +0200

    hurd: Fix p{read,write}{,v64}v2.c build
    
    	* misc/preadv2.c: Include <errno.h>.
    	* misc/preadv64v2.c: Include <errno.h>.
    	* misc/pwritev2.c: Include <errno.h>.
    	* misc/pwritev64v2.c: Include <errno.h>.
    	* sysdeps/posix/preadv2.c: Include <errno.h>.
    	* sysdeps/posix/preadv64v2.c: Include <errno.h>.
    	Fix <unistd.h> inclusion.
    	* sysdeps/posix/pwritev2.c: Include <errno.h>.
    	* sysdeps/posix/pwritev64v2.c: Include <errno.h>.

diff --git a/ChangeLog b/ChangeLog
index f8c12c0..0567c67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,15 @@
 	* sysdeps/posix/preadv64v2.c: Use off64_t instead of OFF_T.
 	* sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
 	* sysdeps/posix/pwritev64v2.c: Use off64_t instead of OFF_T.
+	* misc/preadv2.c: Include <errno.h>.
+	* misc/preadv64v2.c: Include <errno.h>.
+	* misc/pwritev2.c: Include <errno.h>.
+	* misc/pwritev64v2.c: Include <errno.h>.
+	* sysdeps/posix/preadv2.c: Include <errno.h>.
+	* sysdeps/posix/preadv64v2.c: Include <errno.h>.
+	Fix <unistd.h> inclusion.
+	* sysdeps/posix/pwritev2.c: Include <errno.h>.
+	* sysdeps/posix/pwritev64v2.c: Include <errno.h>.
 
 2017-09-01  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/misc/preadv2.c b/misc/preadv2.c
index a62dcaa..fe37940 100644
--- a/misc/preadv2.c
+++ b/misc/preadv2.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <errno.h>
 #include <sys/uio.h>
 
 /* Same as preadv but with an additional flags argument.  */
diff --git a/misc/preadv64v2.c b/misc/preadv64v2.c
index a802c2f..e0f05a5 100644
--- a/misc/preadv64v2.c
+++ b/misc/preadv64v2.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <errno.h>
 #include <sys/uio.h>
 
 /* Same as preadv64 but with an addional flag argument.  */
diff --git a/misc/pwritev2.c b/misc/pwritev2.c
index b9e0727..ead8447 100644
--- a/misc/pwritev2.c
+++ b/misc/pwritev2.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <errno.h>
 #include <sys/uio.h>
 
 /* Same as pwritev but with an additional flags argument.  */
diff --git a/misc/pwritev64v2.c b/misc/pwritev64v2.c
index 1f874f0..c72689c 100644
--- a/misc/pwritev64v2.c
+++ b/misc/pwritev64v2.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <errno.h>
 #include <sys/uio.h>
 
 /* Same as preadv64 but with an addional flag argument.  */
diff --git a/sysdeps/posix/preadv2.c b/sysdeps/posix/preadv2.c
index b79b7b1..cd96677 100644
--- a/sysdeps/posix/preadv2.c
+++ b/sysdeps/posix/preadv2.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <errno.h>
 #include <unistd.h>
 #include <sys/uio.h>
 
diff --git a/sysdeps/posix/preadv64v2.c b/sysdeps/posix/preadv64v2.c
index 263f9b7..649bde4 100644
--- a/sysdeps/posix/preadv64v2.c
+++ b/sysdeps/posix/preadv64v2.c
@@ -16,7 +16,8 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
-#include <unistd.>
+#include <errno.h>
+#include <unistd.h>
 #include <sys/uio.h>
 
 ssize_t
diff --git a/sysdeps/posix/pwritev2.c b/sysdeps/posix/pwritev2.c
index d746059..601f6b1 100644
--- a/sysdeps/posix/pwritev2.c
+++ b/sysdeps/posix/pwritev2.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <errno.h>
 #include <unistd.h>
 #include <sys/uio.h>
 
diff --git a/sysdeps/posix/pwritev64v2.c b/sysdeps/posix/pwritev64v2.c
index f340c8a..9f05f97 100644
--- a/sysdeps/posix/pwritev64v2.c
+++ b/sysdeps/posix/pwritev64v2.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <errno.h>
 #include <unistd.h>
 #include <sys/uio.h>
 

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

Summary of changes:
 ChangeLog                   |    9 +++++++++
 misc/preadv2.c              |    1 +
 misc/preadv64v2.c           |    1 +
 misc/pwritev2.c             |    1 +
 misc/pwritev64v2.c          |    1 +
 sysdeps/posix/preadv2.c     |    1 +
 sysdeps/posix/preadv64v2.c  |    3 ++-
 sysdeps/posix/pwritev2.c    |    1 +
 sysdeps/posix/pwritev64v2.c |    1 +
 9 files changed, 18 insertions(+), 1 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]