diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2023-02-24 13:19:42 -0800 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-03-05 23:28:59 -0800 |
commit | 63d96ccbcd21653ac1e5afd96dbd72bc78900de0 (patch) | |
tree | 71e0548566475f9aaa22a9c5fd91a51d2c6577ac /mjit.h | |
parent | 44c4a2d80d72f1261cfe41ca04ac8e9b826793ca (diff) | |
download | ruby-63d96ccbcd21653ac1e5afd96dbd72bc78900de0.tar.gz |
Invalidate everything on GC.compact
Diffstat (limited to 'mjit.h')
-rw-r--r-- | mjit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ extern void mjit_cancel_all(const char *reason); extern bool mjit_compile(FILE *f, const rb_iseq_t *iseq, const char *funcname, int id); extern void mjit_init(const struct mjit_options *opts); extern void mjit_free_iseq(const rb_iseq_t *iseq); -extern void mjit_update_references(const rb_iseq_t *iseq); +extern void rb_mjit_iseq_update_references(const rb_iseq_t *iseq); extern void mjit_mark(void); extern void mjit_mark_cc_entries(const struct rb_iseq_constant_body *const body); extern void mjit_notify_waitpid(int exit_code); |