From 44aef0b53f3e73ec987a668a3284d5e28bdb8121 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 7 Feb 2007 01:25:05 +0000 Subject: * this commit is a result of refactoring. only renaming functions, moving definitions place, add/remove prototypes, deleting unused variables and removing yarv.h. This commit doesn't change any behavior of ruby/vm. * yarv.h, common.mk: remove yarv.h (contents are moved to yarvcore.h). * error.c, eval_intern.h: include yarvcore.h instead yarv.h * rename some functions: * debug.[ch]: debug_*() -> ruby_debug_*() * iseq.c: iseq_*() -> rb_iseq_*(), ruby_iseq_disasm() * iseq.c: node_name() -> ruby_node_name() * vm.c: yarv_check_redefinition_opt_method() -> rb_vm_check_redefinition_opt_method() * some refactoring with checking -Wall. * array.c: remove rb_ary_ptr() (unused) and remove unused local variables. * object.c: add a prototype of rb_mod_module_exec(). * eval_intern.h (ruby_cref): set it inline. * eval_load.c (rb_load), yarvcore.c: yarv_load() -> rb_load_internal(). * parse.y: add a prototype of rb_parse_in_eval() (in eval.c). * process.c: add a prototype of rb_thread_stop_timer_thread() (in thread.c). * thread.c: remove raw_gets() function (unused) and fix some format mismatch (format mismatchs have remained yet. this is todo). * thread.c (rb_thread_wait_fd_rw): fix typo on label name. * thread_pthread.ci: comment out codes with USE_THREAD_CACHE. * vm.c (rb_svar, rb_backref_get, rb_backref_get, rb_lastline_get, rb_lastline_set) : moved from yarvcore.c. * vm.c (yarv_init_redefined_flag): add a prototype and rename yarv_opt_method_table to vm_opt_method_table. * vm.c (rb_thread_eval): moved from yarvcore.c. * yarvcore.c: remove unused global variables and fix to use nsdr(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_intern.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'eval_intern.h') diff --git a/eval_intern.h b/eval_intern.h index da51b0ba99..355f922caf 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -19,7 +19,7 @@ #include "node.h" #include "util.h" #include "rubysig.h" -#include "yarv.h" +#include "yarvcore.h" #ifdef HAVE_STDLIB_H #include @@ -312,7 +312,7 @@ th_get_ruby_level_cfp(rb_thead_t *th, rb_control_frame_t *cfp) return cfp; } -static NODE * +static inline NODE * ruby_cref() { rb_thead_t *th = GET_THREAD(); @@ -322,6 +322,8 @@ ruby_cref() VALUE th_get_cbase(rb_thead_t *th); VALUE rb_obj_is_proc(VALUE); +void rb_vm_check_redefinition_opt_method(NODE *node); +void rb_thread_terminate_all(void); #define ruby_cbase() th_get_cbase(GET_THREAD()) -- cgit v1.2.3