diff options
author | Richard Braun <rbraun@sceen.net> | 2013-05-24 00:03:12 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-05-24 00:03:12 +0200 |
commit | a166a652577dbc8bb07896faf8dfe4b112d450df (patch) | |
tree | 2ea619d77accff81242f2fd2b23a13fdb3b6de34 | |
parent | 5fc3e6cae1f909e8528e1fab122fc2120b2a479d (diff) |
kern/llsync: set worker thread processor affinity
-rw-r--r-- | kern/llsync.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/llsync.c b/kern/llsync.c index c5364520..05cd2318 100644 --- a/kern/llsync.c +++ b/kern/llsync.c @@ -157,6 +157,7 @@ llsync_setup(void) attr.name = "x15_llsync_work"; attr.policy = THREAD_SCHED_POLICY_TS; attr.priority = THREAD_SCHED_TS_PRIO_DEFAULT; + attr.cpumap = NULL; error = thread_create(&llsync_worker, &attr, llsync_work, NULL); if (error) |