Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,27 @@
typedef unsigned short fl_cursor;
typedef struct {
fl_cursor pos;
fl_cursor count;
} gc_fl;
typedef struct _gc_freelist {
int current;
int count;
int size_bits;
gc_fl *data;
} gc_freelist;
typedef struct {
int block_size;
int max_blocks;
int first_block;
bool need_flush;
// mutable
gc_freelist free;
unsigned char *sizes;
int sizes_ref;
int sizes_ref2;
} gc_allocator_page_data;