diff options
author | Takashi Kokubun <[email protected]> | 2022-10-17 09:27:59 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-17 09:27:59 -0700 |
commit | e7c71c6c9271b0c29f210769159090e17128e740 (patch) | |
tree | 536ec0057e05111955abe0a9cb38389af6c50d08 /iseq.h | |
parent | 07a93b1e378bf2ea356b0561e5e89e60d30fc684 (diff) |
Make mjit_cont sharable with YJIT (#6556)
* Make mjit_cont sharable with YJIT
* Update dependencies
* Update YJIT binding
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'iseq.h')
-rw-r--r-- | iseq.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -31,6 +31,7 @@ RUBY_EXTERN const int ruby_api_version[]; typedef struct rb_iseq_struct rb_iseq_t; #define rb_iseq_t rb_iseq_t #endif +typedef void (*rb_iseq_callback)(const rb_iseq_t *); extern const ID rb_iseq_shared_exc_local_tbl[]; |