aboutsummaryrefslogtreecommitdiff
path: root/dep/include/zthread/PriorityCondition.h
diff options
context:
space:
mode:
authormegamage <none@none>2009-02-12 17:09:15 -0600
committermegamage <none@none>2009-02-12 17:09:15 -0600
commit6aee5fcbe7473a3cbac12b7e8482a7b98bef8be3 (patch)
tree91ec91d5c19eba9c2fe0e84b1c9dc7047a3de80e /dep/include/zthread/PriorityCondition.h
parent2d2f433b4de1c35b22aaf07854fc0ee11fcb350d (diff)
parentf385747164c3fb278c92ef46fbd6c3da6590bbf0 (diff)
*Merge.
--HG-- branch : trunk
Diffstat (limited to 'dep/include/zthread/PriorityCondition.h')
-rw-r--r--dep/include/zthread/PriorityCondition.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dep/include/zthread/PriorityCondition.h b/dep/include/zthread/PriorityCondition.h
index 1fd86c41c11..a85a000e941 100644
--- a/dep/include/zthread/PriorityCondition.h
+++ b/dep/include/zthread/PriorityCondition.h
@@ -28,7 +28,7 @@
#include "zthread/Waitable.h"
namespace ZThread {
-
+
class PriorityConditionImpl;
/**
@@ -49,9 +49,9 @@ namespace ZThread {
class ZTHREAD_API PriorityCondition : public Waitable, private NonCopyable {
PriorityConditionImpl* _impl;
-
+
public:
-
+
/**
* @see Condition::Condition(Lockable& l)
*/
@@ -61,7 +61,7 @@ namespace ZThread {
* @see Condition::~Condition()
*/
~PriorityCondition();
-
+
/**
* @see Condition::signal()
*/
@@ -81,9 +81,9 @@ namespace ZThread {
* @see Condition::wait(unsigned long timeout)
*/
virtual bool wait(unsigned long timeout);
-
+
};
-
+
} // namespace ZThread
#endif // __ZTPRIORITYCONDITION_H__