ObjFW  Diff

Differences From Artifact [0346f15b9f]:

To Artifact [deb7e0460d]:


12
13
14
15
16
17
18


19
20
21
22
23
24
25

26
27

28
29

30
31

32
33
34
35
36
37

38
39
40
41

42
43
44





45
46
47
48
49
50
51
52
53
54
55
56
57


58
59

60
61
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

27
28
29
30
31

32


33



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60



61
62


63
64
65







+
+






-
+


+

-
+
-
-
+
-
-
-



+




+



+
+
+
+
+










-
-
-
+
+
-
-
+


 * Alternatively, it may be distributed under the terms of the GNU General
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#include <string.h>

#import "OFThreadStartFailedException.h"
#import "OFString.h"
#import "OFThread.h"

@implementation OFThreadStartFailedException
@synthesize thread = _thread;
@synthesize thread = _thread, errNo = _errNo;

+ (instancetype)exceptionWithThread: (OFThread *)thread
			      errNo: (int)errNo
{
	return [[[self alloc] initWithThread: thread] autorelease];
	return [[[self alloc] initWithThread: thread
}

				       errNo: errNo] autorelease];
- (instancetype)init
{
	return [self initWithThread: nil];
}

- (instancetype)initWithThread: (OFThread *)thread
			 errNo: (int)errNo
{
	self = [super init];

	_thread = [thread retain];
	_errNo = errNo;

	return self;
}

- (instancetype)init
{
	OF_INVALID_INIT_METHOD
}

- (void)dealloc
{
	[_thread release];

	[super dealloc];
}

- (OFString *)description
{
	if (_thread != nil)
		return [OFString stringWithFormat:
		    @"Starting a thread of type %@ failed!", _thread.class];
	return [OFString stringWithFormat:
	    @"Starting a thread of type %@ failed: %s",
	else
		return @"Starting a thread failed!";
	    _thread.class, strerror(_errNo)];
}
@end