mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
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:
parent
defe914b98
commit
44f485568a
3 changed files with 29 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue