2 * Copyright 2009 Colin Günther, coling@gmx.de
3 * All Rights Reserved. Distributed under the terms of the MIT License.
13 void conditionInit(struct cv
*, const char*);
14 void conditionPublish(struct cv
*, const void*, const char*);
15 void conditionUnpublish(struct cv
*);
16 int conditionTimedWait(struct cv
*, const int);
17 void conditionWait(struct cv
*);
18 void conditionNotifyOne(struct cv
*);
19 int publishedConditionTimedWait(const void*, const int);
20 void publishedConditionNotifyAll(const void*);
26 #endif /* CONDVAR_H_ */