summaryrefslogtreecommitdiff
path: root/id_table.h
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2022-01-25 16:11:24 -0500
committerPeter Zhu <peter@peterzhu.ca>2022-01-25 16:51:16 -0500
commit4d9ad91a35b16afde38fd4ae513a49d22e27b3ea (patch)
treed3c57dcaf33ea2310ca8e6195a739a0342c16cd1 /id_table.h
parent6e901939c67d7c1275c183b0bde4d5d1c78ef081 (diff)
downloadruby-4d9ad91a35b16afde38fd4ae513a49d22e27b3ea.tar.gz
Rename rb_id_table_foreach_with_replace
Renames rb_id_table_foreach_with_replace to rb_id_table_foreach_values_with_replace and passes only the value to the callback. We can use this in GC compaction when we cannot access the global symbol array.
Diffstat (limited to 'id_table.h')
-rw-r--r--id_table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/id_table.h b/id_table.h
index f3dc681d17..9d9eb5648e 100644
--- a/id_table.h
+++ b/id_table.h
@@ -26,11 +26,11 @@ int rb_id_table_insert(struct rb_id_table *tbl, ID id, VALUE val);
int rb_id_table_lookup(struct rb_id_table *tbl, ID id, VALUE *valp);
int rb_id_table_delete(struct rb_id_table *tbl, ID id);
-typedef enum rb_id_table_iterator_result rb_id_table_update_callback_func_t(ID *id, VALUE *val, void *data, int existing);
+typedef enum rb_id_table_iterator_result rb_id_table_update_value_callback_func_t(VALUE *val, void *data, int existing);
typedef enum rb_id_table_iterator_result rb_id_table_foreach_func_t(ID id, VALUE val, void *data);
typedef enum rb_id_table_iterator_result rb_id_table_foreach_values_func_t(VALUE val, void *data);
void rb_id_table_foreach(struct rb_id_table *tbl, rb_id_table_foreach_func_t *func, void *data);
-void rb_id_table_foreach_with_replace(struct rb_id_table *tbl, rb_id_table_foreach_func_t *func, rb_id_table_update_callback_func_t *replace, void *data);
void rb_id_table_foreach_values(struct rb_id_table *tbl, rb_id_table_foreach_values_func_t *func, void *data);
+void rb_id_table_foreach_values_with_replace(struct rb_id_table *tbl, rb_id_table_foreach_values_func_t *func, rb_id_table_update_value_callback_func_t *replace, void *data);
#endif /* RUBY_ID_TABLE_H */