mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +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
|
@ -1,3 +1,9 @@
|
||||||
|
2003-11-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/Additions/GSCompatibility.m: Add dummy gcFinalize
|
||||||
|
implementations for NSLock and NSRecursiveLock so that the
|
||||||
|
lazy locking classes can safely call them under MacOS-X
|
||||||
|
|
||||||
2003-11-10 Richard Frith-Macdonald <rfm@gnu.org>
|
2003-11-10 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Tools/AGSHtml.m: Fix based on email by Chris Vetter to correct
|
* Tools/AGSHtml.m: Fix based on email by Chris Vetter to correct
|
||||||
|
|
|
@ -471,3 +471,23 @@ BOOL GSDebugSet(NSString *level)
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@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