mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm.(c|h), yarvcore.(c|h) (yarvGlobalStateVersion): rename to
ruby_vm_global_state_version. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a8d47615da
commit
5e4e71a348
5 changed files with 9 additions and 7 deletions
4
vm.h
4
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue