mirror of
https://github.com/fluencelabs/musl
synced 2025-06-29 06:32:16 +00:00
pthread: implement try/timed join variants
This commit is contained in:
committed by
Rich Felker
parent
6d38c9cf80
commit
3d98146146
@ -214,6 +214,8 @@ struct cpu_set_t;
|
||||
int pthread_getaffinity_np(pthread_t, size_t, struct cpu_set_t *);
|
||||
int pthread_setaffinity_np(pthread_t, size_t, const struct cpu_set_t *);
|
||||
int pthread_getattr_np(pthread_t, pthread_attr_t *);
|
||||
int pthread_tryjoin_np(pthread_t, void **);
|
||||
int pthread_timedjoin_np(pthread_t, void **, const struct timespec *);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
Reference in New Issue
Block a user