Home | History | Annotate | Download | only in memtest

Lines Matching refs:cpuset

155     cpu_set_t cpuset;
157 CPU_ZERO(&cpuset);
158 if (sched_getaffinity(0, sizeof(cpuset), &cpuset) != 0) {
164 if (CPU_ISSET(i, &cpuset)) {
183 cpu_set_t cpuset;
184 CPU_ZERO(&cpuset);
185 CPU_SET(arg->core, &cpuset);
186 if (sched_setaffinity(0, sizeof(cpuset), &cpuset) != 0) {