]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix comment typos.
authorRoland McGrath <roland@redhat.com>
Wed, 19 Jan 2011 18:20:38 +0000 (10:20 -0800)
committerRoland McGrath <roland@redhat.com>
Wed, 19 Jan 2011 18:20:38 +0000 (10:20 -0800)
nptl/ChangeLog
nptl/pthread_cond_timedwait.c
nptl/pthread_cond_wait.c
nptl/pthread_rwlock_rdlock.c
nptl/pthread_rwlock_timedrdlock.c
nptl/pthread_rwlock_timedwrlock.c
nptl/pthread_rwlock_wrlock.c

index fd961d60bc24e5a22d588d2fc234ddb1fce2d534..802abcdbc41b75cb23d35218151ede82c42ce86a 100644 (file)
@@ -1,3 +1,12 @@
+2011-01-19  Roland McGrath  <roland@redhat.com>
+
+       * pthread_cond_wait.c (__pthread_cond_wait): Fix comment typo.
+       * pthread_cond_timedwait.c (__pthread_cond_timedwait): Likewise.
+       * pthread_rwlock_rdlock.c (__pthread_rwlock_rdlock): Likewise.
+       * pthread_rwlock_wrlock.c (__pthread_rwlock_wrlock): Likewise.
+       * pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock): Likewise.
+       * pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock): Likewise.
+
 2011-01-16  Andreas Schwab  <schwab@linux-m68k.org>
 
        * Makefile (test-extras): Add tst-cleanup4aux.
index 7278ec45b0eb0b48be50fe832fcd17ae988dca27..c173884b2bffc55003550e4dd811af5543fd4ed2 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2004, 2007, 2010 Free Software Foundation, Inc.
+/* Copyright (C) 2003,2004,2007,2010,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
 
@@ -65,7 +65,7 @@ __pthread_cond_timedwait (cond, mutex, abstime)
   int pshared = (cond->__data.__mutex == (void *) ~0l)
                ? LLL_SHARED : LLL_PRIVATE;
 
-  /* Make sure we are along.  */
+  /* Make sure we are alone.  */
   lll_lock (cond->__data.__lock, pshared);
 
   /* Now we can release the mutex.  */
index 670fba573660b11c9d09e68d15960962674912d3..467a03a16d66ed16a67c94b56669bb91e6c61c4b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2003,2004,2006,2007,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
 
@@ -101,7 +101,7 @@ __pthread_cond_wait (cond, mutex)
   int pshared = (cond->__data.__mutex == (void *) ~0l)
                ? LLL_SHARED : LLL_PRIVATE;
 
-  /* Make sure we are along.  */
+  /* Make sure we are alone.  */
   lll_lock (cond->__data.__lock, pshared);
 
   /* Now we can release the mutex.  */
index 31eb508a0d34bbeaa8c3112c6cde58c0d06a7734..2feac57e25fa2779349387d47cd4f2eda4c38aea 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2003,2004,2007,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
 
@@ -31,7 +31,7 @@ __pthread_rwlock_rdlock (rwlock)
 {
   int result = 0;
 
-  /* Make sure we are along.  */
+  /* Make sure we are alone.  */
   lll_lock (rwlock->__data.__lock, rwlock->__data.__shared);
 
   while (1)
index fcd10aac90d17a78e92fafc06e296d5a127f5678..75be8e7d0150c2064c13b67629995aac38df634f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2003,2004,2007,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
 
@@ -32,7 +32,7 @@ pthread_rwlock_timedrdlock (rwlock, abstime)
 {
   int result = 0;
 
-  /* Make sure we are along.  */
+  /* Make sure we are alone.  */
   lll_lock(rwlock->__data.__lock, rwlock->__data.__shared);
 
   while (1)
index e6283f4623a8af78c7ff924b43f83b76ccf4c392..6b3c7523618358f83b93055bf959d9b741f4a789 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2003,2004,2007,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
 
@@ -32,7 +32,7 @@ pthread_rwlock_timedwrlock (rwlock, abstime)
 {
   int result = 0;
 
-  /* Make sure we are along.  */
+  /* Make sure we are alone.  */
   lll_lock (rwlock->__data.__lock, rwlock->__data.__shared);
 
   while (1)
index 64fe9701250d05492e7e2c7204bec322249d2a98..9d5f13583bd069532c118bc089526987ee180a05 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2003,2007,2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
 
@@ -31,7 +31,7 @@ __pthread_rwlock_wrlock (rwlock)
 {
   int result = 0;
 
-  /* Make sure we are along.  */
+  /* Make sure we are alone.  */
   lll_lock (rwlock->__data.__lock, rwlock->__data.__shared);
 
   while (1)