26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*!
* @brief A class for Thread Local Storage keys.
*/
@interface OFTLSKey: OFObject
{
@public
of_tlskey_t key;
@protected
void (*destructor)(id);
of_list_object_t *listObject;
BOOL initialized;
}
/*!
* @brief Creates a new Thread Local Storage key
*
* @return A new, autoreleased Thread Local Storage key
*/
|
|
|
|
|
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*!
* @brief A class for Thread Local Storage keys.
*/
@interface OFTLSKey: OFObject
{
@public
of_tlskey_t _key;
@protected
void (*_destructor)(id);
of_list_object_t *_listObject;
BOOL _initialized;
}
/*!
* @brief Creates a new Thread Local Storage key
*
* @return A new, autoreleased Thread Local Storage key
*/
|