ObjFW  Diff

Differences From Artifact [a30632d8ca]:

To Artifact [80a099a869]:


15
16
17
18
19
20
21


22
23
24
25
26
27
28
 */

#import "OFMutex.h"

@class OFDate;

/*!


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







>
>







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 */

#import "OFMutex.h"

@class OFDate;

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