diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 14:32:07 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 18:08:59 +0200 |
commit | 382466e04e347d3b3fa221897efb8f4cdc239105 (patch) | |
tree | 502407214f530137467309e605493cc0dd18f274 /nptl/sysdeps | |
parent | 6b06ac56cdfc9293908724e51e827534e97819aa (diff) | |
download | glibc-382466e04e347d3b3fa221897efb8f4cdc239105.tar glibc-382466e04e347d3b3fa221897efb8f4cdc239105.tar.gz glibc-382466e04e347d3b3fa221897efb8f4cdc239105.tar.bz2 glibc-382466e04e347d3b3fa221897efb8f4cdc239105.zip |
Fix typos.
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r-- | nptl/sysdeps/pthread/pthread.h | 4 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/internaltypes.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/nptl/sysdeps/pthread/pthread.h b/nptl/sysdeps/pthread/pthread.h index 61d534687f..b58f60e4dd 100644 --- a/nptl/sysdeps/pthread/pthread.h +++ b/nptl/sysdeps/pthread/pthread.h @@ -1034,13 +1034,13 @@ extern int pthread_condattr_setpshared (pthread_condattr_t *__attr, int __pshared) __THROW __nonnull ((1)); #ifdef __USE_XOPEN2K -/* Get the clock selected for the conditon variable attribute ATTR. */ +/* Get the clock selected for the condition variable attribute ATTR. */ extern int pthread_condattr_getclock (const pthread_condattr_t * __restrict __attr, __clockid_t *__restrict __clock_id) __THROW __nonnull ((1, 2)); -/* Set the clock selected for the conditon variable attribute ATTR. */ +/* Set the clock selected for the condition variable attribute ATTR. */ extern int pthread_condattr_setclock (pthread_condattr_t *__attr, __clockid_t __clock_id) __THROW __nonnull ((1)); diff --git a/nptl/sysdeps/unix/sysv/linux/internaltypes.h b/nptl/sysdeps/unix/sysv/linux/internaltypes.h index 699a6187cb..a7ee3fefe1 100644 --- a/nptl/sysdeps/unix/sysv/linux/internaltypes.h +++ b/nptl/sysdeps/unix/sysv/linux/internaltypes.h @@ -66,7 +66,7 @@ struct pthread_condattr { /* Combination of values: - Bit 0 : flag whether coditional variable will be shareable between + Bit 0 : flag whether conditional variable will be sharable between processes. Bit 1-7: clock ID. */ |