AdjoinableMPI
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
st.c
Go to the documentation of this file.
1 /*
2 ##########################################################
3 # This file is part of the AdjoinableMPI library #
4 # released under the MIT License. #
5 # The full COPYRIGHT notice can be found in the top #
6 # level directory of the AdjoinableMPI distribution. #
7 ##########################################################
8 */
9 #include <mpi.h>
10 #include "ampi/userIF/st.h"
11 
13  void* buf,
14  MPI_Status *status) {
15  return MPI_Wait(
16 #ifdef AMPI_FORTRANCOMPATIBLE
17  request
18 #else
19  &(request->plainRequest)
20 #endif
21  ,status);
22 }