From b85171d8365dd0910d630bdb98b53a18c103a4ce Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Tue, 21 Jun 2016 11:33:30 +0200 Subject: [PATCH] [s4u] Add basic documentation on ConditionVariable --- include/simgrid/s4u/conditionVariable.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/simgrid/s4u/conditionVariable.hpp b/include/simgrid/s4u/conditionVariable.hpp index 2858244ef6..0c34c9284f 100644 --- a/include/simgrid/s4u/conditionVariable.hpp +++ b/include/simgrid/s4u/conditionVariable.hpp @@ -18,6 +18,12 @@ namespace s4u { class Mutex; +/** A condition variable + * + * This is based on std::condition_variable and should respect the same + * semantic. But we currently use (only) double for both durations and + * timestamp timeouts. + */ XBT_PUBLIC_CLASS ConditionVariable { public: -- 2.20.1