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

shmem trick broke test case because the test case doesn't link against slurmd.o

took it out for now
parent 67e92fc8
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ global variables ...@@ -33,7 +33,7 @@ global variables
#define CHILD_ERR_RD 4 #define CHILD_ERR_RD 4
#define CHILD_ERR_WR 5 #define CHILD_ERR_WR 5
extern slurmd_shmem_t * shmem_seg ; //extern slurmd_shmem_t * shmem_seg ;
/* prototypes */ /* prototypes */
void slurm_free_task ( void * _task ) ; void slurm_free_task ( void * _task ) ;
...@@ -78,9 +78,11 @@ int fan_out_task_launch ( launch_tasks_msg_t * launch_msg ) ...@@ -78,9 +78,11 @@ int fan_out_task_launch ( launch_tasks_msg_t * launch_msg )
{ {
int i ; int i ;
int rc ; int rc ;
/* shmem work - see slurmd.c shmem_seg this is probably not needed*/ /* shmem work - see slurmd.c shmem_seg this is probably not needed*/
//slurmd_shmem_t * shmem_ptr = get_shmem ( ) ; slurmd_shmem_t * shmem_ptr = get_shmem ( ) ;
slurmd_shmem_t * shmem_ptr = shmem_seg ; //slurmd_shmem_t * shmem_ptr = shmem_seg ;
/*alloc a job_step objec in shmem for this launch_tasks request */ /*alloc a job_step objec in shmem for this launch_tasks request */
/*launch_tasks should really be named launch_job_step*/ /*launch_tasks should really be named launch_job_step*/
job_step_t * curr_job_step = alloc_job_step ( shmem_ptr , launch_msg -> job_id , launch_msg -> job_step_id ) ; job_step_t * curr_job_step = alloc_job_step ( shmem_ptr , launch_msg -> job_id , launch_msg -> job_step_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