Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please clang
[simgrid.git] / include / simgrid / s4u / ConditionVariable.hpp
index 12e0be1..6e6ec31 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2006-2019. 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. */
@@ -23,10 +23,11 @@ namespace s4u {
  */
 class XBT_PUBLIC ConditionVariable {
 private:
-  friend simgrid::kernel::activity::ConditionVariableImpl;
-  smx_cond_t cond_;
+  friend kernel::activity::ConditionVariableImpl;
+  kernel::activity::ConditionVariableImpl* const cond_;
+
+  explicit ConditionVariable(kernel::activity::ConditionVariableImpl* cond) : cond_(cond) {}
 
-  explicit ConditionVariable(smx_cond_t cond) : cond_(cond) {}
 public:
   ConditionVariable(ConditionVariable const&) = delete;
   ConditionVariable& operator=(ConditionVariable const&) = delete;
@@ -36,11 +37,14 @@ public:
 
   static ConditionVariablePtr create();
 
+#ifndef DOXYGEN
   /** @deprecated See Comm::get_mailbox() */
-  XBT_ATTRIB_DEPRECATED_v323("Please use Comm::get_mailbox()") ConditionVariablePtr createConditionVariable()
+  XBT_ATTRIB_DEPRECATED_v323("Please use ConditionVariableImpl::create()") ConditionVariablePtr
+      createConditionVariable()
   {
     return create();
   }
+#endif
 
   //  Wait functions without time:
 
@@ -101,7 +105,7 @@ public:
   void notify_all();
 };
 
-}
-} // namespace simgrid::s4u
+} // namespace s4u
+} // namespace simgrid
 
 #endif