X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b9a15f078a62e397f321dfb570254652785cc377..0a41f5d471ce7d2afcaf32a96e653c2ae397d7fb:/include/simgrid/simix/blocking_simcall.hpp diff --git a/include/simgrid/simix/blocking_simcall.hpp b/include/simgrid/simix/blocking_simcall.hpp index ee12510869..c89b2738f1 100644 --- a/include/simgrid/simix/blocking_simcall.hpp +++ b/include/simgrid/simix/blocking_simcall.hpp @@ -100,7 +100,33 @@ public: }); return result.get(); } - // TODO, wait() + bool is_ready() const + { + if (!valid()) + throw std::future_error(std::future_errc::no_state); + return future_.is_ready(); + } + void wait() + { + if (!valid()) + throw std::future_error(std::future_errc::no_state); + std::exception_ptr exception; + smx_process_t self = SIMIX_process_self(); + simcall_run_blocking([this, &exception, self]{ + try { + // When the kernel future is ready... + this->future_.then([this, self](simgrid::kernel::Future value) { + // ...store it the simix kernel and wake up. + this->future_ = std::move(value); + simgrid::simix::unblock(self); + }); + } + catch (...) { + exception = std::current_exception(); + simgrid::simix::unblock(self); + } + }); + } // TODO, wait_for() // TODO, wait_until() private: