summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 06:22:43 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 06:22:43 +0000
commite6484a153038703447b50fcac26349249922ab28 (patch)
tree1a130685901ccd896f5c8cdec2b4193b7076df3f /vm_core.h
parentd358972213b5a50d7a9dc019b3b586aedf7f846e (diff)
vm_core.h: export symbols of shared variables
vm_insnhelper.h: ditto. All changes are for reducing changes required to introduce JIT compiler. Unlike functions that can be inlined by header, those variables should be shared with JIT-ed code. This will help reducing cost of rebase against upstream. [close GH-1720] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 2582d52a4c..13de0c5864 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -1570,10 +1570,15 @@ VALUE rb_catch_protect(VALUE t, rb_block_call_func *func, VALUE data, enum ruby_
/* for thread */
#if RUBY_VM_THREAD_MODEL == 2
+
+RUBY_SYMBOL_EXPORT_BEGIN
+
extern rb_thread_t *ruby_current_thread;
extern rb_vm_t *ruby_current_vm;
extern rb_event_flag_t ruby_vm_event_flags;
+RUBY_SYMBOL_EXPORT_END
+
#define GET_VM() ruby_current_vm
#define GET_THREAD() ruby_current_thread