X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6fd166d6132c999bfa781b58a5372c7cbdfe36b2..57970de8f4fd548711e2cea76502ba692595fa4a:/src/smpi/smpi_f2c.cpp diff --git a/src/smpi/smpi_f2c.cpp b/src/smpi/smpi_f2c.cpp index b7828d6fba..978722d37d 100644 --- a/src/smpi/smpi_f2c.cpp +++ b/src/smpi/smpi_f2c.cpp @@ -1,12 +1,13 @@ -/* Copyright (c) 2007-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "private.h" -#include +#include "src/smpi/private.h" +#include "src/smpi/smpi_f2c.hpp" +#include "src/smpi/smpi_process.hpp" +#include namespace simgrid{ namespace smpi{ @@ -14,13 +15,29 @@ namespace smpi{ xbt_dict_t F2C::f2c_lookup_=nullptr; int F2C::f2c_id_=0; +xbt_dict_t F2C::f2c_lookup(){ + return f2c_lookup_; +} + +void F2C::set_f2c_lookup(xbt_dict_t dict){ + f2c_lookup_=dict; +} + +void F2C::f2c_id_increment(){ + f2c_id_++; +}; + +int F2C::f2c_id(){ + return f2c_id_; +}; + char* F2C::get_key(char* key, int id) { - snprintf(key, KEY_SIZE, "%x",id); + std::snprintf(key, KEY_SIZE, "%x",id); return key; } char* F2C::get_key_id(char* key, int id) { - snprintf(key, KEY_SIZE, "%x_%d",id, smpi_process_index()); + std::snprintf(key, KEY_SIZE, "%x_%d",id, smpi_process()->index()); return key; } @@ -43,7 +60,7 @@ int F2C::add_f(){ } char key[KEY_SIZE]; xbt_dict_set(f2c_lookup_, get_key(key, f2c_id_), this, nullptr); - f2c_id_++; + f2c_id_increment(); return f2c_id_-1; }