diff options
author | Roland McGrath <roland@redhat.com> | 2011-01-19 10:20:38 -0800 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2011-01-19 10:20:38 -0800 |
commit | c5be0f71d9cac2f9bf0b01bb4b0221ddb6504969 (patch) | |
tree | adb3ff760788fc89740142649b1618179beffb99 /nptl/pthread_cond_wait.c | |
parent | 5d5732b0dc815675130db6882499602fd41dc9cc (diff) | |
download | glibc-c5be0f71d9cac2f9bf0b01bb4b0221ddb6504969.tar.gz |
Fix comment typos.
Diffstat (limited to 'nptl/pthread_cond_wait.c')
-rw-r--r-- | nptl/pthread_cond_wait.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/pthread_cond_wait.c b/nptl/pthread_cond_wait.c index 670fba5736..467a03a16d 100644 --- a/nptl/pthread_cond_wait.c +++ b/nptl/pthread_cond_wait.c @@ -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. */ |