X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/35bf365de6be434aeeafa8b3d5f5c9a1e3082ce3..365a83d3a1407923acccab758f9225e11408b5c6:/src/kernel/activity/MutexImpl.hpp?ds=inline diff --git a/src/kernel/activity/MutexImpl.hpp b/src/kernel/activity/MutexImpl.hpp index cad25c34c9..8bf71be533 100644 --- a/src/kernel/activity/MutexImpl.hpp +++ b/src/kernel/activity/MutexImpl.hpp @@ -52,9 +52,10 @@ class XBT_PUBLIC MutexAcquisitionImpl : public ActivityImpl_Trefcount_.fetch_sub(1) == 1) { xbt_assert(mutex->ongoing_acquisitions_.empty(), "The destroyed mutex still had ongoing acquisitions"); - xbt_assert(mutex->owner_ == nullptr, "The destroyed mutex is still owned by %s", mutex->owner_->get_cname()); + xbt_assert(mutex->owner_ == nullptr, "The destroyed mutex is still owned by actor %s", + mutex->owner_->get_cname()); delete mutex; } }