Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Parrived.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax

#include <mpi.h>

int MPI_Parrived(MPI_Request *request, int partition, int *flag)
int MPI_Parrived(MPI_Request request, int partition, int *flag)


Fortran Syntax
Expand Down
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Pready.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax

#include <mpi.h>

int MPI_Pready(int partition, MPI_Request *request)
int MPI_Pready(int partition, MPI_Request request)


Fortran Syntax
Expand Down
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Pready_list.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax

#include <mpi.h>

int MPI_Pready_list(int length, int *partitions, MPI_Request *request)
int MPI_Pready_list(int length, int *partitions, MPI_Request request)


Fortran Syntax
Expand Down
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Pready_range.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax

#include <mpi.h>

int MPI_Pready_range(int partition_low, int partition_high, MPI_Request *request)
int MPI_Pready_range(int partition_low, int partition_high, MPI_Request request)


Fortran Syntax
Expand Down
Loading