ObjFW  Diff

Differences From Artifact [d301dc0b05]:

To Artifact [b841fb7f6d]:


20
21
22
23
24
25
26
27
28


29
30
31
32

33
34
35
36

37
38
39
40
41
42
43
20
21
22
23
24
25
26


27
28
29
30
31

32
33
34
35

36
37
38
39
40
41
42
43







-
-
+
+



-
+



-
+







#endif

OF_ASSUME_NONNULL_BEGIN

@class OFThread;

/**
 * @class OFThreadJoinFailedException \
 *	  OFThreadJoinFailedException.h ObjFW/OFThreadJoinFailedException.h
 * @class OFJoinThreadFailedException \
 *	  OFJoinThreadFailedException.h ObjFW/OFJoinThreadFailedException.h
 *
 * @brief An exception indicating that joining a thread failed.
 */
@interface OFThreadJoinFailedException: OFException
@interface OFJoinThreadFailedException: OFException
{
	OFThread *_Nullable _thread;
	int _errNo;
	OF_RESERVE_IVARS(OFThreadJoinFailedException, 4)
	OF_RESERVE_IVARS(OFJoinThreadFailedException, 4)
}

/**
 * @brief The thread which could not be joined.
 */
@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFThread *thread;