diff options
| author | Eric van Gyzen <vangyzen@FreeBSD.org> | 2017-02-24 14:37:55 +0000 |
|---|---|---|
| committer | Eric van Gyzen <vangyzen@FreeBSD.org> | 2017-02-24 14:37:55 +0000 |
| commit | f4b4cf565db77f5296d9ed9ce3a017cc923a08eb (patch) | |
| tree | e409b40c24c24d8e809010467b70a0950f806943 /include | |
| parent | 797046eebb896f87fd4a0309f0c1ff751ce4e74b (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/semaphore.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/semaphore.h b/include/semaphore.h index e220fd2c4dad..f880d1581f2e 100644 --- a/include/semaphore.h +++ b/include/semaphore.h @@ -59,8 +59,10 @@ 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); +#if __BSD_VISIBLE int sem_clockwait_np(sem_t * __restrict, __clockid_t, int, const struct timespec *, struct timespec *); +#endif int sem_trywait(sem_t *); int sem_unlink(const char *); int sem_wait(sem_t *); |
