X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0af24eadd83ec0406172c767ad0deffa921c0eaf..57970de8f4fd548711e2cea76502ba692595fa4a:/src/s4u/s4u_storage.cpp diff --git a/src/s4u/s4u_storage.cpp b/src/s4u/s4u_storage.cpp index e816d0d286..ba1820b07a 100644 --- a/src/s4u/s4u_storage.cpp +++ b/src/s4u/s4u_storage.cpp @@ -1,10 +1,9 @@ -/* Copyright (c) 2006-2015, 2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-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 "simgrid/s4u/storage.hpp" +#include "simgrid/s4u/Storage.hpp" #include "simgrid/simix.hpp" #include "src/surf/storage_interface.hpp" #include "xbt/lib.h" @@ -59,12 +58,12 @@ const char* Storage::host() sg_size_t Storage::sizeFree() { - return simcall_storage_get_free_size(pimpl_); + return simgrid::simix::kernelImmediate([this] { return surf_storage_resource_priv(pimpl_)->getFreeSize(); }); } sg_size_t Storage::sizeUsed() { - return simcall_storage_get_used_size(pimpl_); + return simgrid::simix::kernelImmediate([this] { return surf_storage_resource_priv(pimpl_)->getUsedSize(); }); } sg_size_t Storage::size() { @@ -88,8 +87,7 @@ void Storage::setProperty(const char* key, char* value) std::map* Storage::content() { - return simgrid::simix::kernelImmediate( - [this] { return static_cast(surf_storage_resource_priv(this->pimpl_))->getContent(); }); + return simgrid::simix::kernelImmediate([this] { return surf_storage_resource_priv(this->pimpl_)->getContent(); }); } std::unordered_map* Storage::allStorages()