1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-07 04:30:18 +02:00

Add new old-gen predicate method: check a range of addresses

This commit is contained in:
Andy Wingo 2024-12-09 14:28:19 +01:00
parent d96b53facd
commit 274cf43864
6 changed files with 58 additions and 0 deletions

View file

@ -104,6 +104,16 @@ mutator_heap(struct gc_mutator *mutator) {
return mutator->heap;
}
struct gc_heap* gc_mutator_heap(struct gc_mutator *mutator) {
return mutator_heap(mutator);
}
uintptr_t gc_small_object_nursery_low_address(struct gc_heap *heap) {
GC_CRASH();
}
uintptr_t gc_small_object_nursery_high_address(struct gc_heap *heap) {
GC_CRASH();
}
static void
gc_trace_worker_call_with_data(void (*f)(struct gc_tracer *tracer,
struct gc_heap *heap,