Commit a702fd55 authored by Sakthivel Velumani's avatar Sakthivel Velumani

Fixed blocking bug

parent cdda2a4a
...@@ -767,6 +767,7 @@ void *UE_thread(void *arg) { ...@@ -767,6 +767,7 @@ void *UE_thread(void *arg) {
memset(txp[i], 0, writeBlockSize); memset(txp[i], 0, writeBlockSize);
nbSlotProcessing++; nbSlotProcessing++;
LOG_D(PHY,"Number of slots being processed at the moment: %d\n",nbSlotProcessing);
pushTpool(&(get_nrUE_params()->Tpool), msgToPush); pushTpool(&(get_nrUE_params()->Tpool), msgToPush);
} // while !oai_exit } // while !oai_exit
......
...@@ -220,8 +220,8 @@ void init_tpools(uint8_t nun_dlsch_threads) { ...@@ -220,8 +220,8 @@ void init_tpools(uint8_t nun_dlsch_threads) {
memcpy(params,"N",1); memcpy(params,"N",1);
} }
else { else {
params = calloc(1,(RX_NB_TH*3)+1); params = calloc(1,(RX_NB_TH*NB_TH_SLOT*3)+1);
for (int i=0; i<RX_NB_TH; i++) { for (int i=0; i<RX_NB_TH*NB_TH_SLOT; i++) {
memcpy(params+(i*3),"-1,",3); memcpy(params+(i*3),"-1,",3);
} }
} }
......
...@@ -75,6 +75,7 @@ ...@@ -75,6 +75,7 @@
#define RX_NB_TH_MAX 2 #define RX_NB_TH_MAX 2
#define RX_NB_TH 1 #define RX_NB_TH 1
#define NB_TH_SLOT 2
#define RX_NB_TH_DL 14 #define RX_NB_TH_DL 14
#define LTE_SLOTS_PER_SUBFRAME 2 #define LTE_SLOTS_PER_SUBFRAME 2
......
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