Commit a9897798 authored by frobinet's avatar frobinet

BugFix: gNB main() thread shall be shared between at least 2 CPUs during initialization

parent a0eddd49
......@@ -1033,8 +1033,13 @@ int main( int argc, char **argv )
char cpu_affinity[1024];
CPU_ZERO(&cpuset);
#ifdef CPU_AFFINITY
int j;
if (get_nprocs() > 2) {
CPU_SET(1, &cpuset);
// CPU_SET(1, &cpuset);
for (j = 2; j < get_nprocs(); j++)
{
CPU_SET(j, &cpuset);
}
s = pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset);
if (s != 0) {
perror( "pthread_setaffinity_np");
......
......@@ -302,23 +302,11 @@ void thread_top_init(char *thread_name,
#ifdef CPU_AFFINITY
if (get_nprocs() > 2)
{
if (affinity == 0)
{
printf("[SYRTEM CPU AFFINITY !!!] ERROR:affinity is 0 -> 2-7 !!!!!!!!!! !!!!!!!!!!\n");
// CPU_SET(0,&cpuset);
for (j = 2; j < get_nprocs(); j++)
{
CPU_SET(j, &cpuset);
}
}
else
{
for (j = 2; j < get_nprocs(); j++)
{
CPU_SET(j, &cpuset);
}
}
s = pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset);
if (s != 0)
......
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