| 625 | } |
| 626 | |
| 627 | static void remove_undefined(cdump_map_t *map) |
| 628 | { |
| 629 | cdump_map_t undefs; |
| 630 | |
| 631 | /* We can't delete inside iterator, so gather all the undefs |
| 632 | * then remove them. */ |
| 633 | strmap_init(&undefs); |
| 634 | |
| 635 | strmap_iterate(map, gather_undefines, &undefs); |
| 636 | strmap_iterate(&undefs, remove_from_map, map); |
| 637 | strmap_clear(&undefs); |
| 638 | } |
| 639 | |
| 640 | static void destroy_definitions(struct cdump_definitions *defs) |
| 641 | { |