27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
-
+
+
|
* @class OFThreadStartFailedException \
* OFThreadStartFailedException.h ObjFW/OFThreadStartFailedException.h
*
* @brief An exception indicating that starting a thread failed.
*/
@interface OFThreadStartFailedException: OFException
{
OFThread *_thread;
OFThread *_Nullable _thread;
int _errNo;
OF_RESERVE_IVARS(OFThreadStartFailedException, 4)
}
/**
* @brief The thread which could not be started.
*/
@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFThread *thread;
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
+
+
|
*
* @param thread The thread which could not be started
* @param errNo The errno of the error that occurred
* @return A new, autoreleased thread start failed exception
*/
+ (instancetype)exceptionWithThread: (nullable OFThread *)thread
errNo: (int)errNo;
+ (instancetype)exception OF_UNAVAILABLE;
/**
* @brief Initializes an already allocated thread start failed exception.
*
* @param thread The thread which could not be started
* @param errNo The errno of the error that occurred
* @return An initialized thread start failed exception
|