Started testing the GC

Co-authored-by: ValterMiari <ValterMiari@users.noreply.github.com>
This commit is contained in:
Victor Olin 2023-02-15 16:57:11 +01:00
parent f8d761411d
commit c05bf76662
7 changed files with 188 additions and 65 deletions

View file

@ -8,7 +8,7 @@ namespace GC {
struct Chunk {
bool marked;
void *start;
uintptr_t *start;
size_t size;
};