Commit 5a1e8c28 authored by Robert Schmidt's avatar Robert Schmidt

Lock sync_var access in restart_L1L2()

parent c1b024d3
...@@ -801,7 +801,9 @@ int restart_L1L2(module_id_t enb_id) ...@@ -801,7 +801,9 @@ int restart_L1L2(module_id_t enb_id)
LOG_W(ENB_APP, "restarting lte-softmodem\n"); LOG_W(ENB_APP, "restarting lte-softmodem\n");
/* block threads */ /* block threads */
pthread_mutex_lock(&sync_mutex);
sync_var = -1; sync_var = -1;
pthread_mutex_unlock(&sync_mutex);
for (cc_id = 0; cc_id < RC.nb_L1_CC[enb_id]; cc_id++) { for (cc_id = 0; cc_id < RC.nb_L1_CC[enb_id]; cc_id++) {
RC.eNB[enb_id][cc_id]->configured = 0; RC.eNB[enb_id][cc_id]->configured = 0;
......
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