Skip to content

Commit

Permalink
Fix build with NewMadeleine
Browse files Browse the repository at this point in the history
Follow-up of ac2e893eb1
  • Loading branch information
philippemilink committed Jul 19, 2024
1 parent 5cbea78 commit 1e8c4a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mpi/src/nmad/starpu_mpi_nmad.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ int _starpu_mpi_barrier(MPI_Comm comm)
return ret;
}

int _starpu_mpi_wait_for_all__(MPI_Comm comm, unsigned schd_ctx)
int _starpu_mpi_wait_for_all__(MPI_Comm comm, unsigned sched_ctx)
{
(void) comm;
_STARPU_MPI_LOG_IN();
Expand Down
2 changes: 1 addition & 1 deletion mpi/src/nmad/starpu_mpi_nmad_backend.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ struct _starpu_mpi_backend _mpi_backend =

._starpu_mpi_backend_barrier = _starpu_mpi_barrier,
._starpu_mpi_backend_wait_for_all = _starpu_mpi_wait_for_all,
._starpu_mpi_backend_wait_for_all = _starpu_mpi_wait_for_all_in_ctx,
._starpu_mpi_backend_wait_for_all_in_ctx = _starpu_mpi_wait_for_all_in_ctx,
._starpu_mpi_backend_wait = _starpu_mpi_wait,
._starpu_mpi_backend_test = _starpu_mpi_test,

Expand Down

0 comments on commit 1e8c4a5

Please sign in to comment.