Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
allow for programmatic creation of a disk
[simgrid.git] / src / s4u / s4u_Mutex.cpp
index 2bec1c841d35a2d3433ae94e792957a304372c6e..6034aeb2e0b14dd7e2cb3c2e0cabcb4e5f3f7a62 100644 (file)
@@ -44,7 +44,7 @@ bool Mutex::try_lock()
  */
 MutexPtr Mutex::create()
 {
-  kernel::activity::MutexImpl* mutex = kernel::actor::simcall([] { return new kernel::activity::MutexImpl(); });
+  auto* mutex = new kernel::activity::MutexImpl();
   return MutexPtr(&mutex->mutex(), false);
 }