[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r6266 - in /fsf/trunk/libc/nptl: ChangeLog sysdeps/pthread/pthread.h
- To: commits@xxxxxxxxxx
- Subject: [commits] r6266 - in /fsf/trunk/libc/nptl: ChangeLog sysdeps/pthread/pthread.h
- From: eglibc@xxxxxxxxxx
- Date: Fri, 30 May 2008 07:05:22 -0000
Author: eglibc
Date: Fri May 30 00:05:21 2008
New Revision: 6266
Log:
Import glibc-mainline for 2008-05-30
Modified:
fsf/trunk/libc/nptl/ChangeLog
fsf/trunk/libc/nptl/sysdeps/pthread/pthread.h
Modified: fsf/trunk/libc/nptl/ChangeLog
==============================================================================
--- fsf/trunk/libc/nptl/ChangeLog (original)
+++ fsf/trunk/libc/nptl/ChangeLog Fri May 30 00:05:21 2008
@@ -1,3 +1,7 @@
+2008-05-17 Samuel Thibault <samuel.thibault@xxxxxxxxxxxx>
+
+ * sysdeps/pthread/pthread.h: Fix typo in comment.
+
2008-05-28 Ulrich Drepper <drepper@xxxxxxxxxx>
* sysdeps/pthread/createthread.c (do_clone): Pass accurate length
Modified: fsf/trunk/libc/nptl/sysdeps/pthread/pthread.h
==============================================================================
--- fsf/trunk/libc/nptl/sysdeps/pthread/pthread.h (original)
+++ fsf/trunk/libc/nptl/sysdeps/pthread/pthread.h Fri May 30 00:05:21 2008
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007
+/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
Free Software Foundation, Inc.
This file is part of the GNU C Library.
@@ -122,12 +122,12 @@
/* Read-write lock initializers. */
# define PTHREAD_RWLOCK_INITIALIZER \
- { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }
+ { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }
# ifdef __USE_GNU
# if __WORDSIZE == 64
# define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP \
{ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
- PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP } }
+ PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, 0 } }
# else
# if __BYTE_ORDER == __LITTLE_ENDIAN
# define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP \
@@ -399,7 +399,7 @@
/* Initialize thread attribute *ATTR with attributes corresponding to the
- already running thread TH. It shall be called on unitialized ATTR
+ already running thread TH. It shall be called on uninitialized ATTR
and destroyed with pthread_attr_destroy when no longer needed. */
extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr)
__THROW __nonnull ((2));