You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
293 B
9 lines
293 B
11 years ago
|
void gc_init(void *start, void *end);
|
||
|
void gc_collect_start();
|
||
|
void gc_collect_root(void **ptrs, machine_uint_t len);
|
||
|
void gc_collect_end();
|
||
|
void gc_collect();
|
||
|
void *gc_alloc(machine_uint_t n_bytes);
|
||
|
machine_uint_t gc_nbytes(void *ptr_in);
|
||
|
void *gc_realloc(void *ptr, machine_uint_t n_bytes);
|