Skip to content
Snippets Groups Projects
Commit c0dc6c5d authored by Moe Jette's avatar Moe Jette
Browse files

Include pthread attr structure in pthread_create call.

parent 88ff9745
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ int init( void ) ...@@ -64,7 +64,7 @@ int init( void )
slurm_attr_init( &attr ); slurm_attr_init( &attr );
pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED ); pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED );
pthread_create( &backfill_thread, NULL, backfill_agent, NULL); pthread_create( &backfill_thread, &attr, backfill_agent, NULL);
thread_running = true; thread_running = true;
pthread_mutex_unlock( &thread_flag_mutex ); pthread_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