X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/32df9acdb9c57513bf704fab767117eaccdcecc9..3fc3df9c2436f1d43646969194d96f73ea3d4915:/src/msg/msg_host.cpp diff --git a/src/msg/msg_host.cpp b/src/msg/msg_host.cpp index edd0280535..ade4a6371c 100644 --- a/src/msg/msg_host.cpp +++ b/src/msg/msg_host.cpp @@ -7,8 +7,6 @@ #include "simgrid/s4u/host.hpp" #include "src/msg/msg_private.h" -#include - XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(msg); simgrid::xbt::Extension simgrid::MsgHostExt::EXTENSION_ID; @@ -283,19 +281,3 @@ xbt_dict_t MSG_host_get_storage_content(msg_host_t host) xbt_dict_free(&storage_list); return contents; } - -int __MSG_host_get_file_descriptor_id(msg_host_t host){ - simgrid::MsgHostExt* priv = host->extension(); - if (priv->file_descriptor_table == nullptr) { - priv->file_descriptor_table = new std::vector(sg_storage_max_file_descriptors); - std::iota (priv->file_descriptor_table->rbegin(), priv->file_descriptor_table->rend(), 0); // Fill with ..., 1, 0. - } - xbt_assert(!priv->file_descriptor_table->empty(), "Too much files are opened! Some have to be closed."); - int desc = priv->file_descriptor_table->back(); - priv->file_descriptor_table->pop_back(); - return desc; -} - -void __MSG_host_release_file_descriptor_id(msg_host_t host, int id){ - host->extension()->file_descriptor_table->push_back(id); -}