X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49c6310e26e0a6c7d9a0d059340913d6d3c0a880..14bddad6ad3fcf94b0bcdeb69ef68350efb5b213:/src/kernel/actor/ActorImpl.cpp diff --git a/src/kernel/actor/ActorImpl.cpp b/src/kernel/actor/ActorImpl.cpp index 013ad5b217..61e0479325 100644 --- a/src/kernel/actor/ActorImpl.cpp +++ b/src/kernel/actor/ActorImpl.cpp @@ -509,8 +509,10 @@ void create_maestro(const std::function& code) /** (in kernel mode) unpack the simcall and activate the handler */ void ActorImpl::simcall_handle(int times_considered) { - XBT_DEBUG("Handling simcall %p: %s(%ld) %s", &simcall_, simcall_.issuer_->get_cname(), simcall_.issuer_->get_pid(), - (simcall_.observer_ != nullptr ? simcall_.observer_->to_string().c_str() : simcall_.get_cname())); + XBT_DEBUG("Handling simcall %p: %s(%ld) %s (times_considered:%d)", &simcall_, simcall_.issuer_->get_cname(), + simcall_.issuer_->get_pid(), + (simcall_.observer_ != nullptr ? simcall_.observer_->to_string().c_str() : simcall_.get_cname()), + times_considered); if (simcall_.observer_ != nullptr) simcall_.observer_->prepare(times_considered); if (wannadie())