diff --git a/targets/RT/USER/lte-ue.c b/targets/RT/USER/lte-ue.c index e0ec12b9d29e1bacce5ae10dc4572d8be8143653..a5b7d5d4dc768ddfd93defe5f9fc5b0472dd7018 100644 --- a/targets/RT/USER/lte-ue.c +++ b/targets/RT/USER/lte-ue.c @@ -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; }