From 11edc27f7c8561ee08f8318dab876901e6d0a915 Mon Sep 17 00:00:00 2001 From: knopp <knopp@mycompany.com> Date: Tue, 7 Jul 2015 08:48:17 +0000 Subject: [PATCH] fixed a silly trace in lte-ue.c git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7692 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- targets/RT/USER/lte-ue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/RT/USER/lte-ue.c b/targets/RT/USER/lte-ue.c index e0ec12b9d2..a5b7d5d4dc 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; } -- GitLab