Skip to content
Snippets Groups Projects
Commit 52c39d2c authored by tewk's avatar tewk
Browse files

Added pthread_atfork call

parent 7bda5403
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,7 @@ static int do_env(int nodeid, int nnodes, int procid, int nprocs) ; ...@@ -29,6 +29,7 @@ static int do_env(int nodeid, int nnodes, int procid, int nprocs) ;
/*launch_tasks should really be named launch_job_step*/ /*launch_tasks should really be named launch_job_step*/
int launch_tasks ( launch_tasks_request_msg_t * launch_msg ) int launch_tasks ( launch_tasks_request_msg_t * launch_msg )
{ {
pthread_atfork ( NULL , NULL , pthread_fork_child_after ) ;
return interconnect_init ( launch_msg ); return interconnect_init ( launch_msg );
} }
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
/*launch_tasks should really be named launch_job_step*/ /*launch_tasks should really be named launch_job_step*/
int launch_tasks ( launch_tasks_request_msg_t * launch_msg ) int launch_tasks ( launch_tasks_request_msg_t * launch_msg )
{ {
pthread_atfork ( NULL , NULL , pthread_fork_child_after ) ;
return interconnect_init ( launch_msg ); return interconnect_init ( launch_msg );
} }
......
...@@ -319,3 +319,18 @@ int reattach_tasks_streams ( reattach_tasks_streams_msg_t * req_msg ) ...@@ -319,3 +319,18 @@ int reattach_tasks_streams ( reattach_tasks_streams_msg_t * req_msg )
} }
return error_code ; return error_code ;
} }
void pthread_fork_before ( void )
{
}
void pthread_fork_parent_after ( void )
{
}
void pthread_fork_child_after ( void )
{
log_options_t log_opts_def = LOG_OPTS_STDERR_ONLY ;
log_init( "slurmd", log_opts_def, SYSLOG_FACILITY_DAEMON, NULL);
}
...@@ -52,6 +52,10 @@ int reattach_tasks_streams ( reattach_tasks_streams_msg_t * req_msg ) ; ...@@ -52,6 +52,10 @@ int reattach_tasks_streams ( reattach_tasks_streams_msg_t * req_msg ) ;
void * task_exec_thread ( void * arg ) ; void * task_exec_thread ( void * arg ) ;
void pthread_fork_before ( void );
void pthread_fork_parent_after ( void );
void pthread_fork_child_after ( void );
typedef struct task_start typedef struct task_start
{ {
/*task control thread id*/ /*task control thread id*/
......
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