diff options
-rw-r--r-- | libgcompat/pthread.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/libgcompat/pthread.c b/libgcompat/pthread.c index 4357d74..19adceb 100644 --- a/libgcompat/pthread.c +++ b/libgcompat/pthread.c @@ -2,7 +2,7 @@ #include <errno.h> /* errno */ #include <fcntl.h> /* O_CLOEXEC, O_RDONLY */ #include <pthread.h> /* pthread_atfork */ -#include <sched.h> /* sched_yield */ +#include <sched.h> /* sched_yield, CPU_ALLOC, CPU_FREE */ #include <unistd.h> /* open, read */ #include "alias.h" /* weak_alias */ @@ -61,3 +61,19 @@ int pthread_yield(void) { return sched_yield(); } + +/** + * Allocate a large enough CPU set + */ +cpu_set_t *__sched_cpualloc(size_t _count) +{ + return CPU_ALLOC(__count); +} + +/** + * Free a CPU set allocated by __sched_cpualloc + */ +void __sched_cpufree(cpu_set_t *__set) +{ + return CPU_FREE(__set); +} |