Commit d94c3c0a authored by Robert Schmidt's avatar Robert Schmidt

Don't join reorder thread if we disabled it

parent 90358b4f
...@@ -534,7 +534,8 @@ void term_gNB_Tpool(int inst) { ...@@ -534,7 +534,8 @@ void term_gNB_Tpool(int inst) {
gNB_L1_proc_t *proc = &gNB->proc; gNB_L1_proc_t *proc = &gNB->proc;
if (!get_softmodem_params()->emulate_l1) if (!get_softmodem_params()->emulate_l1)
pthread_join(proc->L1_stats_thread, NULL); pthread_join(proc->L1_stats_thread, NULL);
pthread_join(proc->pthread_tx_reorder, NULL); if (!get_softmodem_params()->reorder_thread_disable)
pthread_join(proc->pthread_tx_reorder, NULL);
} }
/*! /*!
......
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