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:
parent
d96b53facd
commit
274cf43864
6 changed files with 58 additions and 0 deletions
10
src/mmc.c
10
src/mmc.c
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue