fix(mpi): fix some namespaces issues with mpi

This commit is contained in:
Johann Dreo 2024-08-23 10:02:22 +02:00
commit 4bbb4a595e
8 changed files with 30 additions and 16 deletions

View file

@ -41,7 +41,8 @@ Authors:
* The entities are here shortly described, if you need further details, don't hesitate
* to visit the boost URL.
*/
namespace eo
{
namespace mpi
{
/**
@ -83,6 +84,14 @@ namespace mpi
~environment();
};
struct MPI_Status {
int count;
int cancelled;
int MPI_SOURCE;
int MPI_TAG;
int MPI_ERROR;
};
/**
* @brief Wrapper class for MPI_Status
*
@ -318,5 +327,6 @@ namespace mpi
* @}
*/
} // namespace mpi
} // namespace eo
# endif //__EO_IMPL_MPI_HPP__