More build fixage.
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@5163 127b21dd-08f5-0310-b4b7-95ae10353056
This commit is contained in:
parent
02fbda615c
commit
2b020d9f52
@ -2,7 +2,7 @@
|
||||
|
||||
NSThreadOOExtensions.h
|
||||
|
||||
Utility methods for NSThread and NS*Lock.
|
||||
Utility methods for NSThread.
|
||||
|
||||
|
||||
Copyright (C) 2007-2012 Jens Ayton
|
||||
@ -34,27 +34,8 @@ SOFTWARE.
|
||||
@interface NSThread (OOExtensions)
|
||||
|
||||
// Set name of current thread for identification during debugging.
|
||||
// Under OS X, this does more than -setName:.
|
||||
+ (void) ooSetCurrentThreadName:(NSString *)name;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@interface NSLock (OOExtensions)
|
||||
|
||||
- (void) ooSetName:(NSString *)name DEPRECATED_MSG("Use setName: instead.");
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@interface NSRecursiveLock (OOExtensions)
|
||||
|
||||
- (void) ooSetName:(NSString *)name DEPRECATED_MSG("Use setName: instead.");
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@interface NSConditionLock (OOExtensions)
|
||||
|
||||
- (void) ooSetName:(NSString *)name DEPRECATED_MSG("Use setName: instead.");
|
||||
|
||||
@end
|
||||
|
@ -53,33 +53,3 @@ SOFTWARE.
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@implementation NSLock (OOExtensions)
|
||||
|
||||
- (void) ooSetName:(NSString *)name
|
||||
{
|
||||
[self setName:name];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@implementation NSRecursiveLock (OOExtensions)
|
||||
|
||||
- (void) ooSetName:(NSString *)name
|
||||
{
|
||||
[self setName:name];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@implementation NSConditionLock (OOExtensions)
|
||||
|
||||
- (void) ooSetName:(NSString *)name
|
||||
{
|
||||
[self setName:name];
|
||||
}
|
||||
|
||||
@end
|
||||
|
Loading…
x
Reference in New Issue
Block a user