From dbee678630736a5d873cde1f262bf2cfc87e8dfe Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 17 Jan 2007 08:48:52 +0000 Subject: * some refactoring around yarvcore and proc. * eval_proc.c: renamed to proc.c. * common.mk: ditto. * yarvcore.h, yarvcore.c: rename or remove some global variables removed: mYarvCore, mYarvInsns renamed: cYarvISeq -> rb_cISeq, cYarvProc -> rb_cProc, cYarvBinding -> rb_cBinding ::YarvCore module is removed and ::YarvCore::VM class becomes ::VM. And change/remove some functions which added with YARV. * compile.c: ditto. * eval.c: ditto. * iseq.c: ditto. * vm.c: ditto. * inits.c: rename Init_yarvcore to Init_vm. * yarvcore.c, proc.c: move some functions and initialization from yarvcore.c to proc.c. * intern.h, proc.c: add global function rb_binding_new(void). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- inits.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inits.c') diff --git a/inits.c b/inits.c index 206a2e4cfb..5087f7c9cf 100644 --- a/inits.c +++ b/inits.c @@ -46,8 +46,8 @@ void Init_Struct _((void)); void Init_Time _((void)); void Init_var_tables _((void)); void Init_version _((void)); -void Init_yarvcore _((void)); void Init_jump _((void)); +void Init_vm _((void)); void @@ -86,6 +86,6 @@ rb_call_inits() Init_GC(); Init_marshal(); Init_Enumerator(); - Init_yarvcore(); + Init_vm(); Init_version(); } -- cgit v1.2.1