From cf23d0f0f0b6f3c118a0c243e16cc9b66a81d541 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 19 Jan 2009 02:38:11 +0000 Subject: * vm.c: add a prefix "rb_" to exposed functions vm_get_ruby_level_next_cfp(), rb_vm_make_env_object(), vm_stack_to_heap(), vm_make_proc(), vm_invoke_proc(), vm_get_sourceline(), vm_cref(), vm_localjump_error(), vm_make_jump_tag_but_local_jump(), vm_jump_tag_but_local_jump(). This changes may affect only core because most of renamed functions require a pointer of not-exposed struct such as rb_thread_t or NODE. In short, they are core functions. * cont.c, eval.c, eval_intern.h, load.c, proc.c, thread.c, vm_core.h, vm_dump.c, vm_eval.c, vm_exec.c, vm_insnhelper.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm_exec.c') diff --git a/vm_exec.c b/vm_exec.c index e82ff08fcf..51b8a0f142 100644 --- a/vm_exec.c +++ b/vm_exec.c @@ -113,7 +113,7 @@ vm_exec_core(rb_thread_t *th, VALUE initial) } const void ** -vm_get_insns_address_table(void) +rb_vm_get_insns_address_table(void) { return (const void **)vm_exec_core(0, 0); } @@ -124,7 +124,7 @@ vm_get_insns_address_table(void) #include "vmtc.inc" const void *const * -vm_get_insns_address_table(void) +rb_vm_get_insns_address_table(void) { return insns_address_table; } -- cgit v1.2.1