From d2c2fbe7ca25affb69715a39922a91875eaad9c7 Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Mon, 9 Aug 2010 07:04:38 -0700 Subject: Added timed_wait to condition variables. --- src/rt/sync/condition_variable.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/rt/sync/condition_variable.h') diff --git a/src/rt/sync/condition_variable.h b/src/rt/sync/condition_variable.h index f847ef99..f336a7f2 100644 --- a/src/rt/sync/condition_variable.h +++ b/src/rt/sync/condition_variable.h @@ -13,6 +13,7 @@ public: virtual ~condition_variable(); void wait(); + void timed_wait(size_t timeout_in_ns); void signal(); }; -- cgit v1.2.3