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
|
@synthesize condition = _condition;
+ (instancetype)exceptionWithCondition: (OFCondition *)condition
{
return [[[self alloc] initWithCondition: condition] autorelease];
}
- (instancetype)init
{
return [self initWithCondition: nil];
}
- (instancetype)initWithCondition: (OFCondition *)condition
{
self = [super init];
_condition = [condition retain];
return self;
}
- (void)dealloc
{
[_condition release];
[super dealloc];
}
- (OFString *)description
{
if (_condition != nil)
return [OFString stringWithFormat:
@"Deallocation of a condition of type %@ was tried, even "
"though a thread was still waiting for it!",
_condition.class];
else
return @"Deallocation of a condition was tried, even though a "
"thread was still waiting for it!";
}
@end
|
|
|
>
>
>
>
>
<
|
|
|
|
<
<
<
|
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
|
@synthesize condition = _condition;
+ (instancetype)exceptionWithCondition: (OFCondition *)condition
{
return [[[self alloc] initWithCondition: condition] autorelease];
}
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
- (instancetype)initWithCondition: (OFCondition *)condition
{
self = [super init];
_condition = [condition retain];
return self;
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (void)dealloc
{
[_condition release];
[super dealloc];
}
- (OFString *)description
{
return [OFString stringWithFormat:
@"Deallocation of a condition of type %@ was tried, even though "
"a thread was still waiting for it!",
_condition.class];
}
@end
|