From 93c5d8c0fdf383ac9c76a3331a0d4f34927d9ee0 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sat, 21 Oct 2017 06:57:04 +0000 Subject: vm.c, vm_insnhelper.h: export symbols of VM serials This change is for future JIT compiler introduction. See r60231 for the purpose. [close GH-1721] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index 7949c35db2..0ede2b8327 100644 --- a/vm.c +++ b/vm.c @@ -295,10 +295,6 @@ static VALUE vm_invoke_bmethod(rb_thread_t *th, rb_proc_t *proc, VALUE self, static VALUE vm_invoke_proc(rb_thread_t *th, rb_proc_t *proc, VALUE self, int argc, const VALUE *argv, VALUE block_handler); -static rb_serial_t ruby_vm_global_method_state = 1; -static rb_serial_t ruby_vm_global_constant_state = 1; -static rb_serial_t ruby_vm_class_serial = 1; - #include "vm_insnhelper.h" #include "vm_exec.h" #include "vm_insnhelper.c" @@ -324,6 +320,9 @@ VALUE ruby_vm_const_missing_count = 0; rb_thread_t *ruby_current_thread = 0; rb_vm_t *ruby_current_vm = 0; rb_event_flag_t ruby_vm_event_flags; +rb_serial_t ruby_vm_global_method_state = 1; +rb_serial_t ruby_vm_global_constant_state = 1; +rb_serial_t ruby_vm_class_serial = 1; static void thread_free(void *ptr); -- cgit v1.2.3