From f6a5d1e62259c8c2fd3b3d9d6e8a212739cf412a Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 21 Oct 2008 20:59:23 +0000 Subject: * include/ruby/vm.h: write a comment. * common.mk: remove vm.h from any rules. vm.h is not needed on this version. * vm_core.h: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/vm.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/ruby/vm.h b/include/ruby/vm.h index cac13b51c..684346973 100644 --- a/include/ruby/vm.h +++ b/include/ruby/vm.h @@ -9,9 +9,14 @@ **********************************************************************/ -#ifndef RUBY_MVM_H -#define RUBY_MVM_H 1 +#ifndef RUBY_VM_H +#define RUBY_VM_H 1 -typedef struct rb_vm_struct rb_vm_t; +/* Place holder. + * + * We will prepare VM creation/control APIs on 1.9.2 or later. + * If you have an interest about it, please see mvm branch. + * http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/mvm/ + */ -#endif /* RUBY_MVM_H */ +#endif /* RUBY_VM_H */ -- cgit