Add prototype for sem_timedwait().

Reviewed by:	standards (Stefan Farfeleder)
This commit is contained in:
deischen 2004-02-03 10:15:16 +00:00
parent 9ce4a934e1
commit ca81ad4e6b
2 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,7 @@ int sem_getvalue(sem_t * __restrict, int * __restrict);
int sem_init(sem_t *, int, unsigned int);
sem_t *sem_open(const char *, int, ...);
int sem_post(sem_t *);
int sem_timedwait(sem_t * __restrict, const struct timespec * __restrict);
int sem_trywait(sem_t *);
int sem_unlink(const char *);
int sem_wait(sem_t *);

View File

@ -54,6 +54,7 @@ int sem_getvalue(sem_t * __restrict, int * __restrict);
int sem_init(sem_t *, int, unsigned int);
sem_t *sem_open(const char *, int, ...);
int sem_post(sem_t *);
int sem_timedwait(sem_t * __restrict, const struct timespec * __restrict);
int sem_trywait(sem_t *);
int sem_unlink(const char *);
int sem_wait(sem_t *);