1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Remove heap_tracer; get to heap from tracer directly

This commit is contained in:
Andy Wingo 2024-07-08 17:35:58 +02:00
parent ba9459ce56
commit ac5d546481
4 changed files with 8 additions and 12 deletions

View file

@ -351,9 +351,6 @@ struct gc_mutator {
struct gc_mutator *next;
};
static inline struct gc_tracer* heap_tracer(struct gc_heap *heap) {
return &heap->tracer;
}
static inline struct mark_space* heap_mark_space(struct gc_heap *heap) {
return &heap->mark_space;
}