Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename instr_interface.h and mc_ignore.h to .hpp.
[simgrid.git] / src / s4u / s4u_conditionVariable.cpp
index 33e9df7..0def488 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved.          */
 
 /* 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 "simgrid/s4u/ConditionVariable.hpp"
 #include "simgrid/simix.h"
-#include "src/simix/smx_synchro_private.hpp"
+#include "src/kernel/activity/ConditionVariableImpl.hpp"
 
 namespace simgrid {
 namespace s4u {
 
-ConditionVariablePtr ConditionVariable::createConditionVariable()
+ConditionVariablePtr ConditionVariable::create()
 {
   smx_cond_t cond = simcall_cond_init();
   return ConditionVariablePtr(&cond->cond_, false);