Commit fcdacf3b authored by Raymond Knopp's avatar Raymond Knopp Committed by Robert Schmidt

Only join reorder thread if not disabled

parent 4652c230
......@@ -544,7 +544,8 @@ void term_gNB_Tpool(int inst) {
gNB_L1_proc_t *proc = &gNB->proc;
if (!get_softmodem_params()->emulate_l1)
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