mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 09:37:08 -04:00
Add prototype for sem_timedwait().
Reviewed by: standards (Stefan Farfeleder)
This commit is contained in:
parent
37e419a131
commit
4e4710b784
2 changed files with 2 additions and 0 deletions
|
|
@ -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 a new issue