Skip to content
Snippets Groups Projects
Commit 2039c1a4 authored by Danny Auble's avatar Danny Auble
Browse files

CRAY - Try to avoid threading issues if making multiple paggs

at the same time.
parent b82d36eb
No related branches found
No related tags found
No related merge requests found
......@@ -261,6 +261,13 @@ extern int slurm_container_plugin_create(stepd_step_rec_t *job)
container automatically. Empty containers are not
valid.
*/
if (threadid) {
debug("Had a thread already %d", threadid);
slurm_mutex_lock(&notify_mutex);
pthread_cond_wait(&notify);
slurm_mutex_unlock(&notify_mutex);
debug("Last thread done %d", threadid);
}
pthread_attr_init(&attr);
pthread_create(&threadid, &attr, _create_container_thread, job);
slurm_mutex_lock(&notify_mutex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment