Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add Exec::setBound (and what lies beneath)
[simgrid.git] / src / kernel / activity / MutexImpl.cpp
index 396c537..6b94db7 100644 (file)
@@ -3,20 +3,16 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include "smx_private.hpp"
-#include "src/surf/cpu_interface.hpp"
-#include "src/surf/surf_interface.hpp"
-#include <xbt/ex.hpp>
-#include <xbt/log.h>
-#include <xbt/utility.hpp>
-
+#include "src/kernel/activity/MutexImpl.hpp"
 #include "src/kernel/activity/SynchroRaw.hpp"
-#include "src/simix/MutexImpl.hpp"
+
+#include "src/simix/smx_private.hpp"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_mutex, simix_synchro, "Mutex kernel-space implementation");
 
 namespace simgrid {
-namespace simix {
+namespace kernel {
+namespace activity {
 
 MutexImpl::MutexImpl() : mutex_(this)
 {
@@ -104,6 +100,7 @@ void MutexImpl::unlock(smx_actor_t issuer)
 }
 }
 }
+}
 
 /** Increase the refcount for this mutex */
 smx_mutex_t SIMIX_mutex_ref(smx_mutex_t mutex)