struct rte_thread_ctrl_params {
void *(*start_routine)(void *);
void *arg;
- pthread_barrier_t configured;
+ pthread_mutex_t lock;
};
static void *rte_thread_init(void *arg)
void *(*start_routine)(void *) = params->start_routine;
void *routine_arg = params->arg;
- pthread_barrier_wait(¶ms->configured);
+ /* wait that configuration done by caller is finished */
+ pthread_mutex_lock(¶ms->lock);
+ pthread_mutex_unlock(¶ms->lock);
+
+ pthread_mutex_destroy(¶ms->lock);
+ free(params);
return start_routine(routine_arg);
}
params->start_routine = start_routine;
params->arg = arg;
-
- pthread_barrier_init(¶ms->configured, NULL, 2);
+ pthread_mutex_init(¶ms->lock, NULL);
+ pthread_mutex_lock(¶ms->lock);
ret = pthread_create(thread, attr, rte_thread_init, (void *)params);
- if (ret != 0)
+ if (ret != 0) {
+ free(params);
return ret;
+ }
if (name != NULL) {
ret = rte_thread_setname(*thread, name);
if (ret < 0)
goto fail;
- pthread_barrier_wait(¶ms->configured);
- free(params);
+ pthread_mutex_unlock(¶ms->lock);
+
+ /* params is freed by the new thread */
return 0;