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:
Jens Ayton 2012-08-02 19:09:08 +00:00
parent 02fbda615c
commit 2b020d9f52
2 changed files with 2 additions and 51 deletions

View File

@ -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

View File

@ -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