summaryrefslogtreecommitdiff
path: root/src/sched/sched_setaffinity.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-08-10 21:15:11 -0400
committerRich Felker <dalias@aerifal.cx>2013-08-10 21:15:11 -0400
commiteeb0328f203cfb8990b3eee5ee31d931fc539ceb (patch)
tree99558d1b944c1cf76f33faab7e294c72480a7328 /src/sched/sched_setaffinity.c
parent76fbf6ad4bb2f697512a1541d296c1f749e3b504 (diff)
downloadmusl-eeb0328f203cfb8990b3eee5ee31d931fc539ceb.tar.gz
add cpu affinity interfaces
this first commit just includes the CPU_* and sched_* interfaces, not the pthread_* interfaces, which may be added later. simple sanity-check testing has been done for the basic interfaces, but most of the macros have not yet been tested.
Diffstat (limited to 'src/sched/sched_setaffinity.c')
-rw-r--r--src/sched/sched_setaffinity.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sched/sched_setaffinity.c b/src/sched/sched_setaffinity.c
new file mode 100644
index 00000000..4344df17
--- /dev/null
+++ b/src/sched/sched_setaffinity.c
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <sched.h>
+#include "syscall.h"
+
+int sched_setaffinity(pid_t tid, size_t size, const cpu_set_t *set)
+{
+ return syscall(SYS_sched_setaffinity, tid, size, set);
+}