27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
* @class OFThreadStillRunningException \
* OFThreadStillRunningException.h ObjFW/OFThreadStillRunningException.h
*
* @brief An exception indicating that a thread is still running.
*/
@interface OFThreadStillRunningException: OFException
{
OFThread *_thread;
}
/**
* @brief The thread which is still running.
*/
@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFThread *thread;
|
|
>
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
* @class OFThreadStillRunningException \
* OFThreadStillRunningException.h ObjFW/OFThreadStillRunningException.h
*
* @brief An exception indicating that a thread is still running.
*/
@interface OFThreadStillRunningException: OFException
{
OFThread *_Nullable _thread;
OF_RESERVE_IVARS(OFThreadStillRunningException, 4)
}
/**
* @brief The thread which is still running.
*/
@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFThread *thread;
|