20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFRecursiveMutex OFRecursiveMutex.h ObjFW/OFRecursiveMutex.h
*
* @brief A class for creating mutual exclusions which can be entered
* recursively.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFRecursiveMutex: OFObject <OFLocking>
{
OFPlainRecursiveMutex _rmutex;
bool _initialized;
OFString *_Nullable _name;
|
>
>
>
>
>
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFRecursiveMutex OFRecursiveMutex.h ObjFW/OFRecursiveMutex.h
*
* @brief A class for creating mutual exclusions which can be entered
* recursively.
*
* If the mutex is deallocated while being held, it throws an
* @ref OFStillLockedException. While this might break ARC's assumption that no
* object ever throws in dealloc, it is considered a fatal programmer error
* that should terminate the application.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFRecursiveMutex: OFObject <OFLocking>
{
OFPlainRecursiveMutex _rmutex;
bool _initialized;
OFString *_Nullable _name;
|