Skip to content
Snippets Groups Projects
Commit c846abb7 authored by Morris Jette's avatar Morris Jette
Browse files

Add pthread_create failure retry logic

parent 92a04d1b
No related branches found
No related tags found
No related merge requests found
...@@ -1156,6 +1156,7 @@ static void _scan_slurm_job_list(void) ...@@ -1156,6 +1156,7 @@ static void _scan_slurm_job_list(void)
static void _spawn_timeslicer_thread(void) static void _spawn_timeslicer_thread(void)
{ {
pthread_attr_t thread_attr_msg; pthread_attr_t thread_attr_msg;
int retries = 0;
slurm_mutex_lock( &thread_flag_mutex ); slurm_mutex_lock( &thread_flag_mutex );
if (thread_running) { if (thread_running) {
...@@ -1166,10 +1167,13 @@ static void _spawn_timeslicer_thread(void) ...@@ -1166,10 +1167,13 @@ static void _spawn_timeslicer_thread(void)
} }
slurm_attr_init(&thread_attr_msg); slurm_attr_init(&thread_attr_msg);
if (pthread_create(&timeslicer_thread_id, &thread_attr_msg, while (pthread_create(&timeslicer_thread_id, &thread_attr_msg,
_timeslicer_thread, NULL)) _timeslicer_thread, NULL)) {
fatal("pthread_create %m"); error("pthread_create error %m");
if (++retries > 3)
fatal("Can't create pthread");
usleep(10000); /* sleep and retry */
}
slurm_attr_destroy(&thread_attr_msg); slurm_attr_destroy(&thread_attr_msg);
thread_running = true; thread_running = true;
slurm_mutex_unlock(&thread_flag_mutex); slurm_mutex_unlock(&thread_flag_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