diff options
| author | David Xu <davidxu@FreeBSD.org> | 2003-09-06 00:07:52 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2003-09-06 00:07:52 +0000 |
| commit | 407c3de5227834f5e4d1c12e0801566d81aa67cb (patch) | |
| tree | 73b871e47699807928698f9459249ea662fc20db /include | |
| parent | f82c9e70f9ddf44620f22d519db048ae75194882 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/pthread.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/pthread.h b/include/pthread.h index 9da241208667e..417e78f22ecdb 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -258,6 +258,10 @@ int pthread_rwlock_destroy(pthread_rwlock_t *); int pthread_rwlock_init(pthread_rwlock_t *, const pthread_rwlockattr_t *); int pthread_rwlock_rdlock(pthread_rwlock_t *); +int pthread_rwlock_timedrdlock(pthread_rwlock_t *, + const struct timespec *); +int pthread_rwlock_timedrwlock(pthread_rwlock_t *, + const struct timespec *); int pthread_rwlock_tryrdlock(pthread_rwlock_t *); int pthread_rwlock_trywrlock(pthread_rwlock_t *); int pthread_rwlock_unlock(pthread_rwlock_t *); |
