summaryrefslogtreecommitdiffstats
path: root/vm.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-14 18:08:10 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-14 18:08:10 +0000
commit24d4ba2a258d2cbbc8cd2a75496d5aae5f13d6b7 (patch)
tree76acd628eb4e40e1f3adadf2627c07bf233e515b /vm.h
parentfe2a37dbcbae5324618845968dd63e458010970d (diff)
downloadruby-24d4ba2a258d2cbbc8cd2a75496d5aae5f13d6b7.tar.gz
ruby-24d4ba2a258d2cbbc8cd2a75496d5aae5f13d6b7.tar.xz
ruby-24d4ba2a258d2cbbc8cd2a75496d5aae5f13d6b7.zip
* vm.(c|h), yarvcore.(c|h) (yarvGlobalStateVersion): rename to
ruby_vm_global_state_version. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm.h b/vm.h
index 3f1f66b98..b9d52b41d 100644
--- a/vm.h
+++ b/vm.h
@@ -264,9 +264,9 @@ default: \
/* VM state version */
-#define GET_VM_STATE_VERSION() (yarvGlobalStateVersion)
+#define GET_VM_STATE_VERSION() (vm_global_state_version)
#define INC_VM_STATE_VERSION() \
- (yarvGlobalStateVersion = (yarvGlobalStateVersion+1) & 0x8fffffff)
+ (vm_global_state_version = (vm_global_state_version+1) & 0x8fffffff)
#define BOP_PLUS 0x01
#define BOP_MINUS 0x02