diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-09-06 17:48:28 +0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-13 10:07:03 -0700 |
commit | 733e6877d7b1146ecb5c796f4d249843101a7b5f (patch) | |
tree | deef7abf4f88e6e0ba4ac326d351063a73399a8d /system/include/libc/pthread.h | |
parent | 4c3c7df30af6dc9ba6309e527a5173d9078c56b9 (diff) |
Update to musl-0.9.13 headers.
Diffstat (limited to 'system/include/libc/pthread.h')
-rw-r--r-- | system/include/libc/pthread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/include/libc/pthread.h b/system/include/libc/pthread.h index 731bce38..f7c9568c 100644 --- a/system/include/libc/pthread.h +++ b/system/include/libc/pthread.h @@ -210,6 +210,9 @@ void _pthread_cleanup_pop(struct __ptcb *, int); #define pthread_cleanup_pop(r) _pthread_cleanup_pop(&__cb, (r)); } while(0) #ifdef _GNU_SOURCE +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 *); #endif |