You need to sign in or sign up before continuing.
Commit 83ffa53c authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

fix compilation of T tracers with 'make'

Modification required after !3977 is merged.
parent 90ff7379
......@@ -7,7 +7,6 @@
#include "utils.h"
#include "../T_defs.h"
#include "common/platform_types.h"
#ifdef T_SEND_TIME
#include <time.h>
#endif
......
......@@ -7,7 +7,7 @@
#include "handler.h"
#include "database.h"
#include "view/view.h"
#include "utils.h"
#include "../utils.h"
#include "filter/filter.h"
#include <stdlib.h>
#include <string.h>
......
......@@ -323,7 +323,7 @@ void dl(void *_d, event e)
}
trace_lte(e.sending_time, d, DIRECTION_DOWNLINK,
e.e[d->dl_rnti].i != 0xffff ? C_RNTI : SI_RNTI_T, e.e[d->dl_rnti].i,
e.e[d->dl_rnti].i != 0xffff ? C_RNTI : SI_RNTI, e.e[d->dl_rnti].i,
e.e[d->dl_frame].i, e.e[d->dl_subframe].i,
e.e[d->dl_data].b, e.e[d->dl_data].bsize,
NO_PREAMBLE, NO_SR_RNTI);
......
......@@ -27,12 +27,12 @@
/* rntiType */
#define NO_RNTI 0
#define P_RNTI_T 1
#define P_RNTI 1
#define RA_RNTI 2
#define C_RNTI 3
#define SI_RNTI_T 4
#define SI_RNTI 4
#define SPS_RNTI 5
#define M_RNTI_T 6
#define M_RNTI 6
#define SL_BCH_RNTI 7
#define SL_RNTI 8
#define SC_RNTI 9
......
......@@ -11,7 +11,6 @@
#include "utils.h"
#include "../T_defs.h"
#include "configuration.h"
#include "common/platform_types.h"
void usage(void)
{
......
......@@ -5,6 +5,8 @@
#ifndef _UTILS_H_
#define _UTILS_H_
#define UNUSED(x) (void)x
void new_thread(void *(*f)(void *), void *data);
void sleepms(int ms);
void bps(char *out, float v, char *suffix);
......
......@@ -3,6 +3,7 @@
*/
#include "view.h"
#include "../utils.h"
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
......
......@@ -6,7 +6,6 @@
#define _VIEW_H_
#include "gui/gui.h"
#include "common/platform_types.h"
/* defines the public API of views */
......
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