Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Hide Asan error.
[simgrid.git] / src / s4u / s4u_Activity.cpp
index a8b2c76..a174119 100644 (file)
@@ -60,7 +60,10 @@ bool Activity::test()
 
 Activity* Activity::cancel()
 {
-  kernel::actor::simcall([this] { pimpl_->cancel(); });
+  kernel::actor::simcall([this] {
+    XBT_HERE();
+    pimpl_->cancel();
+  });
   complete(State::CANCELED);
   return this;
 }