mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 00:27:08 -04:00
Add pthread_condattr_getclock, pthread_condattr_setclock.
This commit is contained in:
parent
fb91fbdc5d
commit
fc5684ec15
1 changed files with 4 additions and 0 deletions
|
|
@ -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 *);
|
||||
|
|
|
|||
Loading…
Reference in a new issue