diff options
author | Marvin Borner | 2023-06-07 15:54:59 +0200 |
---|---|---|
committer | Marvin Borner | 2023-06-07 15:54:59 +0200 |
commit | 1e728c2455fdc696e260f87d0d523a3de6d43a00 (patch) | |
tree | b270fb80fb1fc6f1ad6256a288fc1417c0704899 /src/map.c | |
parent | ec2be68120e48c75b0acd2bdfb5cc8d931c70cfd (diff) |
Parenting is still needed
I was certainly dumb.
This reverts commit ec2be68120e48c75b0acd2bdfb5cc8d931c70cfd.
Diffstat (limited to 'src/map.c')
-rw-r--r-- | src/map.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -7,7 +7,6 @@ #include <map.h> #include <parse.h> #include <schedule.h> -#include <term.h> static struct hashmap *all_terms; @@ -61,7 +60,16 @@ void map_dump(struct hashmap *map) struct term *term = *(struct term **)iter_val; fprintf(stderr, "%d\t%ld\t", term->type, term->refs); term_print(term); - fprintf(stderr, "\n"); + fprintf(stderr, "\t{"); + + size_t jiter = 0; + void *jiter_val; + while (hashmap_iter(term->parents, &jiter, &jiter_val)) { + struct term *parent = *(struct term **)jiter_val; + term_print(parent); + fprintf(stderr, ", "); + } + fprintf(stderr, "}\n"); } fprintf(stderr, "---\n\n"); } |