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

This going to break the build

ssl needs to be linked in
added slurmd_addr to test
parent 067a77ad
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign ...@@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign
sbin_PROGRAMS = slurmd sbin_PROGRAMS = slurmd
LDADD = $(top_srcdir)/src/common/libcommon.la LDADD = $(top_srcdir)/src/common/libcommon.la
slurmd_SOURCES = slurmd.c \ slurmd_SOURCES = slurmd.c \
...@@ -13,5 +13,6 @@ slurmd_SOURCES = slurmd.c \ ...@@ -13,5 +13,6 @@ slurmd_SOURCES = slurmd.c \
read_proc.c \ read_proc.c \
task_mgr.c \ task_mgr.c \
shmem_struct.c \ shmem_struct.c \
circular_buffer.c circular_buffer.c \
credential_utils.c
...@@ -6,11 +6,14 @@ int main ( int argc , char* argv[] ) ...@@ -6,11 +6,14 @@ int main ( int argc , char* argv[] )
slurm_msg_t response_msg ; slurm_msg_t response_msg ;
launch_tasks_msg_t launch_tasks_msg ; launch_tasks_msg_t launch_tasks_msg ;
slurm_addr io_pipe_addrs[2] ; slurm_addr io_pipe_addrs[2] ;
slurm_addr slurmd_addr ;
int gids[1] ; int gids[1] ;
gids[1] = 9999 ; gids[1] = 9999 ;
slurm_set_addr_char ( & slurmd_addr , 7003 , "localhost" ) ;
request_msg . msg_type = REQUEST_LAUNCH_TASKS ; request_msg . msg_type = REQUEST_LAUNCH_TASKS ;
request_msg . data = & launch_tasks_msg ; request_msg . data = & launch_tasks_msg ;
request_msg . address = slurmd_addr ;
slurm_set_addr_char ( io_pipe_addrs , 7071 , "localhost" ) ; slurm_set_addr_char ( io_pipe_addrs , 7071 , "localhost" ) ;
slurm_set_addr_char ( io_pipe_addrs + 1 , 7072 , "localhost" ) ; slurm_set_addr_char ( io_pipe_addrs + 1 , 7072 , "localhost" ) ;
......
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