add pthread_setaffinity_np and pthread_getaffinity_np functions

This commit is contained in:
Rich Felker
2013-08-10 21:41:05 -04:00
parent eeb0328f20
commit 7406fdf5a1
4 changed files with 29 additions and 18 deletions

View File

@ -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