
This reverts commit aec6a04b8e99b42eca431fc0b56947937d3a14c2. (google/benchmark still at hash 1576991177ba97a4b2ff6c45950f1fa6e9aa678c as it was in #83488. Also reapplied same extra local diffs) Verified locally.
17 lines
389 B
C++
17 lines
389 B
C++
#include <pthread.h>
|
|
int main() {
|
|
cpu_set_t set;
|
|
CPU_ZERO(&set);
|
|
for (int i = 0; i < CPU_SETSIZE; ++i) {
|
|
CPU_SET(i, &set);
|
|
CPU_CLR(i, &set);
|
|
}
|
|
pthread_t self = pthread_self();
|
|
int ret;
|
|
ret = pthread_getaffinity_np(self, sizeof(set), &set);
|
|
if (ret != 0) return ret;
|
|
ret = pthread_setaffinity_np(self, sizeof(set), &set);
|
|
if (ret != 0) return ret;
|
|
return 0;
|
|
}
|