blob: 38c71131c452e89699bee47d83bffa5f9145ec2b [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001// SPDX-License-Identifier: GPL-2.0
2#include <stdint.h>
3#include <pthread.h>
4#include <sched.h>
5
6int main(void)
7{
8 int ret = 0;
9 pthread_attr_t thread_attr;
10 cpu_set_t cs;
11
12 pthread_attr_init(&thread_attr);
13 CPU_ZERO(&cs);
14
15 ret = pthread_attr_setaffinity_np(&thread_attr, sizeof(cs), &cs);
16
17 return ret;
18}