Add prototype for sem_timedwait().
Reviewed by: standards (Stefan Farfeleder)
This commit is contained in:
parent
9ce4a934e1
commit
ca81ad4e6b
@ -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 *);
|
||||
|
@ -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 *);
|
||||
|
Loading…
Reference in New Issue
Block a user