add MPI stub for MPI_Iprobe()

This commit is contained in:
Axel Kohlmeyer
2025-03-07 11:50:53 -05:00
parent 24fc6eb10a
commit 9af8fdc91e
2 changed files with 9 additions and 0 deletions

View File

@ -300,6 +300,14 @@ int MPI_Irecv(void *buf, int count, MPI_Datatype datatype, int source, int tag,
/* ---------------------------------------------------------------------- */
int MPI_Iprobe(int, int, MPI_Comm, int *flag, MPI_Status *);
{
if (flag) *flag = 0;
return 0;
}
/* ---------------------------------------------------------------------- */
int MPI_Wait(MPI_Request *request, MPI_Status *status)
{
static int callcount = 0;