Commit cfbced8b authored by Eurecom's avatar Eurecom

Remove wrong abort call for the case of affinity!= -1

parent 1da693dd
......@@ -257,7 +257,6 @@ void threadCreate(pthread_t* t, void * (*func)(void*), void * param, char* name,
pthread_setname_np(*t, name);
if (affinity != -1 ) {
abort();
cpu_set_t cpuset;
CPU_ZERO(&cpuset);
CPU_SET(affinity, &cpuset);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment