mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Minor portability fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13729 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
826980c384
commit
17345e79c3
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-05-28 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSObject.m: Change order of zombie initialisation for
|
||||
darwin port.
|
||||
|
||||
2002-05-28 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/gnustep/base/GSMime.h: Make set... methods return void.
|
||||
|
|
|
@ -719,9 +719,9 @@ static BOOL double_release_check_enabled = NO;
|
|||
gnustep_global_lock = [[NSRecursiveLock alloc] init];
|
||||
|
||||
// Zombie management stuff.
|
||||
zombieClass = [NSZombie class];
|
||||
zombieMap = NSCreateMapTable(NSNonOwnedPointerMapKeyCallBacks,
|
||||
NSNonOwnedPointerMapValueCallBacks, 0);
|
||||
zombieClass = [NSZombie class];
|
||||
NSZombieEnabled = GSEnvironmentFlag("NSZombieEnabled", NO);
|
||||
NSDeallocateZombies = GSEnvironmentFlag("NSDeallocateZombies", NO);
|
||||
|
||||
|
|
Loading…
Reference in a new issue