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.19-737-gca06321


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  ca06321df0d5327f30b7ef7065278974dd89c6d8 (commit)
      from  631021e0aaefbf9fde4b4472e4ec1d51fffb9bbd (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=ca06321df0d5327f30b7ef7065278974dd89c6d8

commit ca06321df0d5327f30b7ef7065278974dd89c6d8
Author: Roland McGrath <roland@hack.frob.com>
Date:   Tue Jul 1 15:01:24 2014 -0700

    Add missing #include for MIN/MAX users.

diff --git a/ChangeLog b/ChangeLog
index a079a18..e081609 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2014-07-01  Roland McGrath  <roland@hack.frob.com>
+
+	* sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
+	* nptl/pthread_mutex_lock.c: Likewise.
+	* nptl/pthread_mutex_timedlock.c: Likewise.
+	* nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
+
 2014-07-01  Richard henderson  <rth@redhat.com>
 
 	* sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
diff --git a/nptl/pthread_mutex_lock.c b/nptl/pthread_mutex_lock.c
index 2c31777..d94f4c9 100644
--- a/nptl/pthread_mutex_lock.c
+++ b/nptl/pthread_mutex_lock.c
@@ -20,6 +20,7 @@
 #include <errno.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <sys/param.h>
 #include <not-cancel.h>
 #include "pthreadP.h"
 #include <lowlevellock.h>
diff --git a/nptl/pthread_mutex_timedlock.c b/nptl/pthread_mutex_timedlock.c
index 0361923..57644c3 100644
--- a/nptl/pthread_mutex_timedlock.c
+++ b/nptl/pthread_mutex_timedlock.c
@@ -19,6 +19,7 @@
 #include <assert.h>
 #include <errno.h>
 #include <time.h>
+#include <sys/param.h>
 #include "pthreadP.h"
 #include <lowlevellock.h>
 #include <not-cancel.h>
diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c b/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c
index b15c835..c80fef4 100644
--- a/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c
+++ b/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c
@@ -22,6 +22,7 @@
 #include <string.h>
 #include <sysdep.h>
 #include <sys/types.h>
+#include <sys/param.h>
 #include <shlib-compat.h>
 
 
diff --git a/sysdeps/unix/sysv/linux/sysconf.c b/sysdeps/unix/sysv/linux/sysconf.c
index 25208cd..99d4c27 100644
--- a/sysdeps/unix/sysv/linux/sysconf.c
+++ b/sysdeps/unix/sysv/linux/sysconf.c
@@ -23,6 +23,7 @@
 #include <time.h>
 #include <unistd.h>
 #include <sys/resource.h>
+#include <sys/param.h>
 #include <not-cancel.h>
 #include <ldsodefs.h>
 

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

Summary of changes:
 ChangeLog                                          |    7 +++++++
 nptl/pthread_mutex_lock.c                          |    1 +
 nptl/pthread_mutex_timedlock.c                     |    1 +
 .../unix/sysv/linux/pthread_attr_getaffinity.c     |    1 +
 sysdeps/unix/sysv/linux/sysconf.c                  |    1 +
 5 files changed, 11 insertions(+), 0 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]