Yegappan Lakshmanan | 25536f4 | 2024-05-22 16:45:04 +0200 | [diff] [blame^] | 1 | /* gc.c */ |
| 2 | int get_copyID(void); |
| 3 | int garbage_collect(int testing); |
| 4 | int set_ref_in_ht(hashtab_T *ht, int copyID, list_stack_T **list_stack); |
| 5 | int set_ref_in_dict(dict_T *d, int copyID); |
| 6 | int set_ref_in_list(list_T *ll, int copyID); |
| 7 | int set_ref_in_list_items(list_T *l, int copyID, ht_stack_T **ht_stack); |
| 8 | int set_ref_in_callback(callback_T *cb, int copyID); |
| 9 | int set_ref_in_item_class(class_T *cl, int copyID, ht_stack_T **ht_stack, list_stack_T **list_stack); |
| 10 | int set_ref_in_item(typval_T *tv, int copyID, ht_stack_T **ht_stack, list_stack_T **list_stack); |
| 11 | /* vim: set ft=c : */ |
| 12 | |