Commit 11edc27f authored by knopp's avatar knopp

fixed a silly trace in lte-ue.c

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7692 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 5c1550f4
......@@ -582,7 +582,7 @@ static void *UE_thread_tx(void *arg)
if (sched_setattr(0, &attr, flags) < 0 ) {
perror("[SCHED] eNB tx thread: sched_setattr failed\n");
perror("[SCHED] UE_thread_tx thread: sched_setattr failed\n");
return &UE_thread_tx_retval;
}
......@@ -730,7 +730,7 @@ static void *UE_thread_rx(void *arg)
attr.sched_period = 1 * 1000000; // each rx thread has a period of 1ms from the starting point
if (sched_setattr(0, &attr, flags) < 0 ) {
perror("[SCHED] eNB tx thread: sched_setattr failed\n");
perror("[SCHED] UE_thread_rx : sched_setattr failed\n");
return &UE_thread_rx_retval;
}
......
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