Commit 60c206bd authored by Cedric Roux's avatar Cedric Roux

cleanup process_HARQ_feedback

parent f156a996
......@@ -576,7 +576,11 @@ typedef struct {
double power_based;
} eNB_UE_estimated_distances;
typedef struct {
typedef struct LTE_eNB_UE_stats {
#ifdef Rel10
/// pointers to secondary CC ue_stats
struct LTE_eNB_UE_stats *ue_stats_s[5];
#endif
/// UL RSSI per receive antenna
int32_t UL_rssi[NB_ANTENNAS_RX];
/// PUCCH1a/b power (digital linear)
......
......@@ -240,6 +240,8 @@ typedef struct PHY_VARS_eNB_s {
/// indicator of the pCell of the UE
/// set to 1 if this cell is the primary cell of the UE
int pCCflag[NUMBER_OF_UE_MAX];
/// CC_id of secondary configured cells (int for it can be == -1)
int sCC_id[NUMBER_OF_UE_MAX][5];
#endif
/// cell-specific reference symbols
......
This diff is collapsed.
......@@ -1641,7 +1641,7 @@ if (sched_setattr(0, &attr, flags) < 0 ) {
}
cpu_set_t cpuset;
CPU_ZERO(&cpuset);
CPU_SET(0, &cpuset);
CPU_SET(3, &cpuset);
if (pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset)) abort();
#endif
......
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