diff options
| author | David Xu <davidxu@FreeBSD.org> | 2005-04-03 23:55:02 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2005-04-03 23:55:02 +0000 |
| commit | fc5684ec1555c12c5ce7adcd22210fcd024f95a3 (patch) | |
| tree | 704649389b9c897b51de4f1a92ecc5c2fadcfa9b | |
| parent | fb91fbdc5d197cd873ef4ff09bc6694a46aa5e2d (diff) | |
Notes
| -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 8e4dcfd58d1a..0f3b93fc72af 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -225,6 +225,10 @@ void pthread_cleanup_pop(int); void pthread_cleanup_push(void (*) (void *), void *routine_arg); int pthread_condattr_destroy(pthread_condattr_t *); int pthread_condattr_init(pthread_condattr_t *); +int pthread_condattr_getclock(const pthread_condattr_t *, + clockid_t *); +int pthread_condattr_setclock(pthread_condattr_t *, + clockid_t); int pthread_cond_broadcast(pthread_cond_t *); int pthread_cond_destroy(pthread_cond_t *); |
