Workaround for runitme bug.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30864 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2010-06-26 14:04:09 +00:00
parent defe914b98
commit 44f485568a
3 changed files with 29 additions and 1 deletions

View file

@ -2423,6 +2423,14 @@ objc_create_block_classes_as_subclasses_of(Class super) __attribute__((weak));
{
return (Class)isa;
}
- (void) dealloc
{
GSLogZombie(self, _cmd);
}
- (void) description
{
GSLogZombie(self, _cmd);
}
- (Class) originalClass
{
return NSMapGet(zombieMap, (void*)self);
@ -2455,6 +2463,20 @@ objc_create_block_classes_as_subclasses_of(Class super) __attribute__((weak));
[allocationLock unlock];
return [c instanceMethodSignatureForSelector: aSelector];
}
- (void) release
{
GSLogZombie(self, _cmd);
}
- (BOOL) respondsToSelector: (SEL)aSel
{
GSLogZombie(self, _cmd);
return NO;
}
- (id) retain
{
GSLogZombie(self, _cmd);
return self;
}
@end
@implementation GSContentAccessingProxy