added huge pages tests

This commit is contained in:
2025-04-25 16:32:38 +01:00
parent 524057812c
commit 788aadfc9c
156 changed files with 97963 additions and 70 deletions

View File

@@ -166,7 +166,7 @@ void *malloc(size_t sz) {
// if (heap + sz > heap_start + HEAP_SIZE) return NULL;
// heap += sz;
// return heap - sz;
malloc_called += 1;
malloc_called += 2;
return MALLOCCHERI(sz);
}