Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'Adrien.Gougeon/simgrid-master'
[simgrid.git] / src / smpi / mpi / smpi_errhandler.cpp
1 /* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "smpi_errhandler.hpp"
7 #include "private.hpp"
8
9 #include <cstdio>
10
11 simgrid::smpi::Errhandler mpi_MPI_ERRORS_RETURN;
12 MPI_Errhandler MPI_ERRORS_RETURN=&mpi_MPI_ERRORS_RETURN;
13 simgrid::smpi::Errhandler mpi_MPI_ERRORS_ARE_FATAL;
14 MPI_Errhandler MPI_ERRORS_ARE_FATAL=&mpi_MPI_ERRORS_ARE_FATAL;
15
16 namespace simgrid{
17 namespace smpi{
18
19 MPI_Errhandler Errhandler::f2c(int id) {
20   if (F2C::lookup() != nullptr && id >= 0) {
21     return static_cast<MPI_Errhandler>(F2C::lookup()->at(id));
22   } else {
23     return MPI_ERRHANDLER_NULL;
24   }
25 }
26
27 void Errhandler::call(MPI_Comm comm, int errorcode) const
28 {
29   comm_func_(&comm, &errorcode);
30 }
31
32 void Errhandler::call(MPI_Win win, int errorcode) const
33 {
34   win_func_(&win, &errorcode);
35 }
36
37 void Errhandler::call(MPI_File file, int errorcode) const
38 {
39   file_func_(&file, &errorcode);
40 }
41
42 void Errhandler::ref()
43 {
44   refcount_++;
45 }
46
47 void Errhandler::unref(Errhandler* errhandler){
48   errhandler->refcount_--;
49   if(errhandler->refcount_==0){
50     delete errhandler;
51   }
52 }
53
54 }
55 }