1diff -ru a/C/Threads.c b/C/Threads.c2--- a/C/Threads.c 2021-12-21 08:00:00.000000000 -05003+++ b/C/Threads.c 2022-03-05 11:07:47.203504536 -05004@@ -265,7 +265,7 @@5 */67 // ret2 =8- pthread_attr_setaffinity_np(&attr, sizeof(*cpuSet), cpuSet);9+ //pthread_attr_setaffinity_np(&attr, sizeof(*cpuSet), cpuSet);10 // if (ret2) ret = ret2;11 #endif12 }13@@ -275,14 +275,12 @@14 if (!ret)15 {16 p->_created = 1;17- /*18 if (cpuSet)19 {20 // ret2 =21 pthread_setaffinity_np(p->_tid, sizeof(*cpuSet), cpuSet);22 // if (ret2) ret = ret2;23 }24- */25 }26 }27 // ret2 =28diff -ru a/C/Threads.h b/C/Threads.h29--- a/C/Threads.h 2021-12-21 08:00:00.000000000 -050030+++ b/C/Threads.h 2022-03-05 11:07:47.203504536 -050031@@ -29,6 +29,7 @@32 #endif3334 #include <pthread.h>35+#include <sched.h>3637 #endif38