Commit ea858d54 authored by Cedric Roux's avatar Cedric Roux

integration fix: strerror has to be used, not perror

The command line to get the error was:
    ./build_oai --eNB -w EXMIMO -c
parent b82e7c1a
...@@ -135,7 +135,7 @@ void init_thread(int sched_runtime, int sched_deadline, int sched_fifo, cpu_set_ ...@@ -135,7 +135,7 @@ void init_thread(int sched_runtime, int sched_deadline, int sched_fifo, cpu_set_
attr.sched_deadline = sched_deadline; attr.sched_deadline = sched_deadline;
attr.sched_period = 0; attr.sched_period = 0;
AssertFatal(sched_setattr(0, &attr, 0) == 0, AssertFatal(sched_setattr(0, &attr, 0) == 0,
"[SCHED] %s thread: sched_setattr failed %s \n", name, perror(errno)); "[SCHED] %s thread: sched_setattr failed %s \n", name, strerror(errno));
LOG_I(HW,"[SCHED][eNB] %s deadline thread %lu started on CPU %d\n", LOG_I(HW,"[SCHED][eNB] %s deadline thread %lu started on CPU %d\n",
name, (unsigned long)gettid(), sched_getcpu()); name, (unsigned long)gettid(), sched_getcpu());
} }
......
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