Commit a83218a0 authored by khadraou's avatar khadraou

bugfix

parent 362e7c14
......@@ -1591,6 +1591,14 @@ static void* ru_thread_control( void* param ) {
exit_fun( "ERROR pthread_cond_signal" );
break;
}
LOG_I(PHY, "Signaling main thread that RU %d is ready\n",ru->idx);
pthread_mutex_lock(&RC.ru_mutex);
RC.ru_mask &= ~(1<<ru->idx);
pthread_cond_signal(&RC.ru_cond);
pthread_mutex_unlock(&RC.ru_mutex);
wait_sync("ru_thread");
}
else{
LOG_I(PHY,"RRU not ready, cannot start\n");
......
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