ObjFW  Diff

Differences From Artifact [5908f93915]:

To Artifact [c116d03373]:


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#import "OFMutex.h"

/*!
 * @brief A class implementing a condition variable for thread synchronization.
 */
@interface OFCondition: OFMutex
{
	of_condition_t condition;
	BOOL conditionInitialized;
}

/*!
 * @brief Creates a new condition.
 *
 * @return A new, autoreleased OFCondition
 */







|
|







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#import "OFMutex.h"

/*!
 * @brief A class implementing a condition variable for thread synchronization.
 */
@interface OFCondition: OFMutex
{
	of_condition_t _condition;
	BOOL _conditionInitialized;
}

/*!
 * @brief Creates a new condition.
 *
 * @return A new, autoreleased OFCondition
 */