diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-21 20:59:23 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-21 20:59:23 +0000 |
commit | 34d1e9bb2504d7fa0b98ad99a32c549cd0d92853 (patch) | |
tree | 3684a3a9330303573f4ae54a3b24fc7d1915b70d /include/ruby/vm.h | |
parent | bf52a3c0c4ce5044a31e62ab6f6366e5a76103a7 (diff) |
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@19882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/vm.h')
-rw-r--r-- | include/ruby/vm.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/ruby/vm.h b/include/ruby/vm.h index cac13b51cb..6843469735 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 */ |