Lines Matching refs:cpus
21 cpu_set_t cpus;
31 * Helper function to run a thread on a specific set of CPUs.
38 if (sched_setaffinity(0, sizeof thread->cpus, &thread->cpus) < 0)
49 * the CPUs specified by cpus.
52 int create_per_cpu_threads(cpu_set_t *cpus, thread_func_t func, void *arg)
59 if (!CPU_ISSET(cpu, cpus))
67 CPU_ZERO(&thread->cpus);
68 CPU_SET(cpu, &thread->cpus);
98 CPU_ZERO(&thread->cpus);