make STMallocZone freeable

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@19566 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Stefan Urbanek 2004-06-20 12:18:49 +00:00
parent 9155a068cd
commit 413482f71b
2 changed files with 13 additions and 2 deletions

View file

@ -19,7 +19,17 @@
All = {
};
// added by mateu
"NSObject class" = {
SymbolicSelectors = {
"=" = "isEqual:";
"==" = "isSame:";
"~=" = "notEqual:";
"~~" = "notSame:";
};
};
NSObject = {
Use = ("NSObject-operators");
};

View file

@ -45,7 +45,8 @@ void _STInitMallocZone(void)
{
if(!STMallocZone)
{
STMallocZone = NSCreateZone(NSPageSize(),NSPageSize(),NO);
/* FIXME: do some testing whether there should be YES or NO */
STMallocZone = NSCreateZone(NSPageSize(),NSPageSize(),YES);
}
}