summaryrefslogtreecommitdiffstats
path: root/include/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-31 06:17:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-31 06:17:45 +0000
commita0bcd615130175f3d4579bdb77c19957203b7577 (patch)
tree43b394fdba488a790c9a7ad7f0016ff6ffd69a2b /include/ruby
parent6375f7d9a092b8539f5022df49a63ff18947ea67 (diff)
downloadruby-a0bcd615130175f3d4579bdb77c19957203b7577.tar.gz
ruby-a0bcd615130175f3d4579bdb77c19957203b7577.tar.xz
ruby-a0bcd615130175f3d4579bdb77c19957203b7577.zip
* include/ruby/mvm.h: new header file for MVM, and moved rb_vm_t and
rb_thread_t from vm_core.h. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/mvm.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/ruby/mvm.h b/include/ruby/mvm.h
new file mode 100644
index 000000000..6b6a2f523
--- /dev/null
+++ b/include/ruby/mvm.h
@@ -0,0 +1,18 @@
+/**********************************************************************
+
+ ruby/mvm.h -
+
+ $Author$
+ created at: Sat May 31 15:17:36 2008
+
+ Copyright (C) 2008 Yukihiro Matsumoto
+
+**********************************************************************/
+
+#ifndef RUBY_MVM_H
+#define RUBY_MVM_H 1
+
+typedef struct rb_vm_struct rb_vm_t;
+typedef struct rb_thread_struct rb_thread_t;
+
+#endif /* RUBY_MVM_H */