allocator: free_list -> free_vec

This commit is contained in:
2026-02-28 04:36:00 +00:00
committed by oreodave
parent 30a87d4a1b
commit fc602f1664
2 changed files with 14 additions and 14 deletions

View File

@@ -33,7 +33,7 @@ typedef struct
typedef struct
{
vec_t pages;
vec_t free_list;
vec_t free_vec;
} alloc_t;
lisp_t *alloc_make(alloc_t *, tag_t type);