ObjFW  Diff

Differences From Artifact [cc3937ad7a]:

To Artifact [7bb5f669dd]:


20
21
22
23
24
25
26

27
28
29
30
31
32
33
@interface OFTLSKey: OFObject
{
@public
	of_tlskey_t key;
@protected
	void (*destructor)(id);
	of_list_object_t *listobj;

}

/**
 * \return A new autoreleased Thread Local Storage key
 */
+ tlsKey;








>







20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@interface OFTLSKey: OFObject
{
@public
	of_tlskey_t key;
@protected
	void (*destructor)(id);
	of_list_object_t *listobj;
	BOOL initialized;
}

/**
 * \return A new autoreleased Thread Local Storage key
 */
+ tlsKey;

165
166
167
168
169
170
171

172
173
174
175
176
177
178

/**
 * \brief A class for creating mutual exclusions.
 */
@interface OFMutex: OFObject
{
	of_mutex_t mutex;

}

/**
 * \return A new autoreleased mutex.
 */
+ mutex;








>







166
167
168
169
170
171
172
173
174
175
176
177
178
179
180

/**
 * \brief A class for creating mutual exclusions.
 */
@interface OFMutex: OFObject
{
	of_mutex_t mutex;
	BOOL initialized;
}

/**
 * \return A new autoreleased mutex.
 */
+ mutex;