diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-18 14:37:26 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-18 14:37:26 +0000 |
commit | 095240c022f9d51b4c1fdc0a737583192c49ec6a (patch) | |
tree | a488f92c3c0e465bbeba03a7a30c4ed7235726d2 /libpthread/linuxthreads.old/semaphore.h | |
parent | 5ffc30ac873a193b37e6f3bfde022b94fc6fab0d (diff) | |
download | uClibc-alpine-095240c022f9d51b4c1fdc0a737583192c49ec6a.tar.bz2 uClibc-alpine-095240c022f9d51b4c1fdc0a737583192c49ec6a.tar.xz |
Synch linuxthreads.old with trunk
Diffstat (limited to 'libpthread/linuxthreads.old/semaphore.h')
-rw-r--r-- | libpthread/linuxthreads.old/semaphore.h | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/libpthread/linuxthreads.old/semaphore.h b/libpthread/linuxthreads.old/semaphore.h index 7b09ea931..fac2e5937 100644 --- a/libpthread/linuxthreads.old/semaphore.h +++ b/libpthread/linuxthreads.old/semaphore.h @@ -13,7 +13,7 @@ /* GNU Library General Public License for more details. */ #ifndef _SEMAPHORE_H -#define _SEMAPHORE_H 1 +#define _SEMAPHORE_H 1 #include <features.h> #include <sys/types.h> @@ -54,7 +54,7 @@ extern int sem_init (sem_t *__sem, int __pshared, unsigned int __value) __THROW; /* Free resources associated with semaphore object SEM. */ extern int sem_destroy (sem_t *__sem) __THROW; -/* Open a named semaphore NAME with open flaot OFLAG. */ +/* Open a named semaphore NAME with open flags OFLAG. */ extern sem_t *sem_open (__const char *__name, int __oflag, ...) __THROW; /* Close descriptor for named semaphore SEM. */ @@ -63,11 +63,17 @@ extern int sem_close (sem_t *__sem) __THROW; /* Remove named semaphore NAME. */ extern int sem_unlink (__const char *__name) __THROW; -/* Wait for SEM being posted. */ +/* Wait for SEM being posted. + + This function is a cancellation point and therefore not marked with + __THROW. */ extern int sem_wait (sem_t *__sem); #ifdef __USE_XOPEN2K -/* Similar to `sem_wait' but wait only until ABSTIME. */ +/* Similar to `sem_wait' but wait only until ABSTIME. + + This function is a cancellation point and therefore not marked with + __THROW. */ extern int sem_timedwait (sem_t *__restrict __sem, __const struct timespec *__restrict __abstime); #endif @@ -82,6 +88,7 @@ extern int sem_post (sem_t *__sem) __THROW; extern int sem_getvalue (sem_t *__restrict __sem, int *__restrict __sval) __THROW; + __END_DECLS -#endif /* semaphore.h */ +#endif /* semaphore.h */ |