mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
Fixes for lazy locking on macos
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18088 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f3a7cd9816
commit
2d8e1932e7
2 changed files with 26 additions and 0 deletions
|
@ -471,3 +471,23 @@ BOOL GSDebugSet(NSString *level)
|
|||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation NSLock (GSCompatibility)
|
||||
/*
|
||||
* Dummy implementation of garbage collection cleanup method called by
|
||||
* GSLazyLock on deallocation.
|
||||
*/
|
||||
- (void) gcFinalize
|
||||
{
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation NSRecursiveLock (GSCompatibility)
|
||||
/*
|
||||
* Dummy implementation of garbage collection cleanup method called by
|
||||
* GSLazyRecursiveLock on deallocation.
|
||||
*/
|
||||
- (void) gcFinalize
|
||||
{
|
||||
}
|
||||
@end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue