Migrated engine to using dlmalloc through eng::

This commit is contained in:
2022-02-24 02:17:41 -05:00
parent acc00289fb
commit f467944095
61 changed files with 631 additions and 590 deletions

View File

@@ -57,7 +57,7 @@ int dlmalloc_hash() {
hash = (hash * 17) + (int)(intptr_t)(blk);
}
for (int i = 0; i < 15; i++) {
free(blocks[i]);
dlfree(blocks[i]);
}
return (hash & 0x7FFFFFFF) | (0x40000000);
}