X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..2df88396d94796a341f1dbaa1d41f3162745d927:/src/smpi/include/smpi_f2c.hpp diff --git a/src/smpi/include/smpi_f2c.hpp b/src/smpi/include/smpi_f2c.hpp index f28c8fbafe..1d965e9aba 100644 --- a/src/smpi/include/smpi_f2c.hpp +++ b/src/smpi/include/smpi_f2c.hpp @@ -27,19 +27,20 @@ class F2C { static void set_f2c_lookup(std::unordered_map* map); static int f2c_id(); static void f2c_id_increment(); + int my_f2c_id_; public: + char* get_my_key(char* key); static char* get_key(char* key, int id); - static char* get_key_id(char* key, int id); static void delete_lookup(); static std::unordered_map* lookup(); - + F2C() : my_f2c_id_(-1){} virtual ~F2C() = default; //Override these to handle specific values. virtual int add_f(); static void free_f(int id); virtual int c2f(); - + static void print_f2c_lookup(); // This method should be overridden in all subclasses to avoid casting the result when calling it. // For the default one, the MPI_*_NULL returned is assumed to be NULL. static F2C* f2c(int id);