]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/pthread/pthread.h: Fix typo in comment.
authorUlrich Drepper <drepper@redhat.com>
Thu, 29 May 2008 14:53:01 +0000 (14:53 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 29 May 2008 14:53:01 +0000 (14:53 +0000)
nptl/ChangeLog
nptl/sysdeps/pthread/pthread.h

index bfa3642f9206b29e5bdf6fd8a743c107f6c1fd00..aee0f51317f962ae4488ebc8ab9cfb1447d83593 100644 (file)
@@ -1,3 +1,7 @@
+2008-05-17  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+       * sysdeps/pthread/pthread.h: Fix typo in comment.
+
 2008-05-28  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/pthread/createthread.c (do_clone): Pass accurate length
index f3ab0ae7110b12e3f5c328e75d0a04f4bb381b91..331a441cefe644c53e65ed2704dedf06048d9c43 100644 (file)
@@ -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 @@ enum
 
 /* 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 @@ extern int pthread_attr_getaffinity_np (__const pthread_attr_t *__attr,
 
 
 /* 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));
This page took 0.05863 seconds and 5 git commands to generate.