Hello,
For reasons beyond the scope of any explination, I still don't have a
running GNUStep system, but browsing through the NSZombie changes if found
something very odd:
NSObject.m:
in GSMakeZombie and GSLogZombie
if (allocationLock == 0)
{
objc_mutex_lock(allocationLock);
}
and
if (allocationLock == 0)
{
objc_mutex_unlock(allocationLock);
}
which (IMHO) should be
if (allocationLock != 0)
{
objc_mutex_lock(allocationLock);
}
and
if (allocationLock != 0)
{
objc_mutex_unlock(allocationLock);
}
please correct me if I'm wrong.
Dave
_______________________________________________
Bug-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-gnustep