Release 4.7 tools/build/feature/test-pthread-attr-setaffinity-np.c
#include <stdint.h>
#include <pthread.h>
#include <sched.h>
int main(void)
{
int ret = 0;
pthread_attr_t thread_attr;
cpu_set_t cs;
pthread_attr_init(&thread_attr);
CPU_ZERO(&cs);
ret = pthread_attr_setaffinity_np(&thread_attr, sizeof(cs), &cs);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vineet gupta | vineet gupta | 34 | 69.39% | 1 | 33.33% |
adrian hunter | adrian hunter | 15 | 30.61% | 2 | 66.67% |
| Total | 49 | 100.00% | 3 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
vineet gupta | vineet gupta | 40 | 68.97% | 1 | 33.33% |
adrian hunter | adrian hunter | 18 | 31.03% | 2 | 66.67% |
| Total | 58 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.