From 317d956d6acc636d9c8ba608c4c3de7a2594bc1c Mon Sep 17 00:00:00 2001 From: Danny Auble <da@llnl.gov> Date: Wed, 20 Sep 2006 18:32:48 +0000 Subject: [PATCH] fix to call real functions --- src/plugins/mpi/mvapich/mvapich.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/mpi/mvapich/mvapich.c b/src/plugins/mpi/mvapich/mvapich.c index 11045590f1a..89cea1fe8cf 100644 --- a/src/plugins/mpi/mvapich/mvapich.c +++ b/src/plugins/mpi/mvapich/mvapich.c @@ -372,7 +372,8 @@ static void mvapich_print_abort_message (slurm_step_layout_t *sl, int rank) return; } - host = step_layout_host_name (sl, step_layout_host_id (sl, rank)); + host = slurm_step_layout_host_name( + sl, slurm_step_layout_host_id(sl, rank)); info ("mvapich: Received ABORT message from MPI rank %d [on %s]", rank, host); @@ -409,7 +410,7 @@ static void mvapich_wait_for_abort(srun_job_t *job) } close(newfd); - mvapich_print_abort_message (job->step_layout, *((int *) rbuf)); + mvapich_print_abort_message(job->step_layout, *((int *) rbuf)); fwd_signal(job, SIGKILL, opt.max_threads); } -- GitLab