diff options
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/linuxthreads/condvar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/condvar.c b/libpthread/linuxthreads/condvar.c index 405d9bab4..8bc114e3c 100644 --- a/libpthread/linuxthreads/condvar.c +++ b/libpthread/linuxthreads/condvar.c @@ -427,7 +427,7 @@ int pthread_condattr_setpshared (pthread_condattr_t *attr, int pshared) if (pshared != PTHREAD_PROCESS_PRIVATE && pshared != PTHREAD_PROCESS_SHARED) return EINVAL; - /* For now it is not possible to shared a conditional variable. */ + /* For now it is not possible to share a conditional variable. */ if (pshared != PTHREAD_PROCESS_PRIVATE) return ENOSYS; |