X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/23dc3ae2ac429b801b81976e763b2034217ae200..f2c9678ae1fbcdc391c1aa62ca7f6ea7aa8b4bdd:/src/smpi/smpi_f2c.hpp diff --git a/src/smpi/smpi_f2c.hpp b/src/smpi/smpi_f2c.hpp index a013e04180..362377123a 100644 --- a/src/smpi/smpi_f2c.hpp +++ b/src/smpi/smpi_f2c.hpp @@ -18,11 +18,16 @@ namespace simgrid{ namespace smpi{ class F2C { - protected: + private: // We use a single lookup table for every type. // Beware of collisions if id in mpif.h is not unique static xbt_dict_t f2c_lookup_; static int f2c_id_; + protected: + static xbt_dict_t f2c_lookup(); + static void set_f2c_lookup(xbt_dict_t dict); + static int f2c_id(); + static void f2c_id_increment(); public: static char* get_key(char* key, int id); static char* get_key_id(char* key, int id); @@ -37,7 +42,7 @@ class F2C { //This method should be overriden 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); + static F2C* f2c(int id); }; }