mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-20 18:22:02 +00:00
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:
parent
9155a068cd
commit
413482f71b
2 changed files with 13 additions and 2 deletions
|
@ -19,7 +19,17 @@
|
|||
All = {
|
||||
|
||||
};
|
||||
|
||||
|
||||
// added by mateu
|
||||
"NSObject class" = {
|
||||
SymbolicSelectors = {
|
||||
"=" = "isEqual:";
|
||||
"==" = "isSame:";
|
||||
"~=" = "notEqual:";
|
||||
"~~" = "notSame:";
|
||||
};
|
||||
};
|
||||
|
||||
NSObject = {
|
||||
Use = ("NSObject-operators");
|
||||
};
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue