[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r14199 - in /fsf/trunk/libc: ChangeLog nptl/ChangeLog nptl/pthread_rwlock_init.c sysdeps/unix/sysv/linux/check_native.c



Author: eglibc
Date: Wed Jun 15 00:03:04 2011
New Revision: 14199

Log:
Import glibc-mainline for 2011-06-15

Modified:
    fsf/trunk/libc/ChangeLog
    fsf/trunk/libc/nptl/ChangeLog
    fsf/trunk/libc/nptl/pthread_rwlock_init.c
    fsf/trunk/libc/sysdeps/unix/sysv/linux/check_native.c

Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Wed Jun 15 00:03:04 2011
@@ -1,3 +1,8 @@
+2011-06-14  Andreas Jaeger  <aj@xxxxxxx>
+
+	* sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
+	memset declaration.
+
 2011-06-10  Andreas Schwab  <schwab@xxxxxxxxxx>
 
 	* sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating

Modified: fsf/trunk/libc/nptl/ChangeLog
==============================================================================
--- fsf/trunk/libc/nptl/ChangeLog (original)
+++ fsf/trunk/libc/nptl/ChangeLog Wed Jun 15 00:03:04 2011
@@ -1,3 +1,7 @@
+2011-06-14  Andreas Jaeger  <aj@xxxxxxx>
+
+	* pthread_rwlock_init.c: Include <string.h> for memset declaration.
+
 2011-05-11  Ulrich Drepper  <drepper@xxxxxxxxx>
 
 	[BZ #386]

Modified: fsf/trunk/libc/nptl/pthread_rwlock_init.c
==============================================================================
--- fsf/trunk/libc/nptl/pthread_rwlock_init.c (original)
+++ fsf/trunk/libc/nptl/pthread_rwlock_init.c Wed Jun 15 00:03:04 2011
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2002,2007,2009,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@xxxxxxxxxx>, 2002.
 
@@ -18,6 +18,7 @@
    02111-1307 USA.  */
 
 #include "pthreadP.h"
+#include <string.h>
 #include <kernel-features.h>
 
 

Modified: fsf/trunk/libc/sysdeps/unix/sysv/linux/check_native.c
==============================================================================
--- fsf/trunk/libc/sysdeps/unix/sysv/linux/check_native.c (original)
+++ fsf/trunk/libc/sysdeps/unix/sysv/linux/check_native.c Wed Jun 15 00:03:04 2011
@@ -1,5 +1,5 @@
 /* Determine whether interfaces use native transport.  Linux version.
-   Copyright (C) 2007 Free Software Foundation, Inc.
+   Copyright (C) 2007,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -23,6 +23,7 @@
 #include <stddef.h>
 #include <stdint.h>
 #include <stdlib.h>
+#include <string.h>
 #include <time.h>
 #include <unistd.h>
 #include <net/if.h>