X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0d4065e84bc5b13ae87790aba6294c7a21bc0199..8265fae7843fa515935916b005f15daa93ff2f26:/src/simix/ActorImpl.cpp diff --git a/src/simix/ActorImpl.cpp b/src/simix/ActorImpl.cpp index fd72b81eb2..8c9e22a3c5 100644 --- a/src/simix/ActorImpl.cpp +++ b/src/simix/ActorImpl.cpp @@ -101,7 +101,8 @@ void SIMIX_process_cleanup(smx_actor_t process) comm->cancel(); } - XBT_DEBUG("%p should not be run anymore",process); + XBT_DEBUG("%s@%s(%ld) should not run anymore", process->get_cname(), process->iface()->get_host()->get_cname(), + process->pid_); simix_global->process_list.erase(process->pid_); if (process->host_ && process->host_process_list_hook.is_linked()) simgrid::xbt::intrusive_erase(process->host_->pimpl_->process_list_, *process); @@ -758,6 +759,7 @@ void SIMIX_process_yield(smx_actor_t self) XBT_DEBUG("Process %s@%s is dead", self->get_cname(), self->host_->get_cname()); self->context_->stop(); + xbt_die("I should be dead by now."); } if (self->suspended_) {