summaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-16 00:01:06 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-16 00:01:06 +0000
commit430c98990b0449a1adbad02377e7ae6c642120d9 (patch)
tree7ddf4d986bccffe75a4afb1620fc58015d46fecb /vm_core.h
parentdd460dc40875258aae373f6eb16220940603dc22 (diff)
downloadruby-430c98990b0449a1adbad02377e7ae6c642120d9.tar.gz
ruby-430c98990b0449a1adbad02377e7ae6c642120d9.tar.xz
ruby-430c98990b0449a1adbad02377e7ae6c642120d9.zip
* node.h, vm_core.h, variable.c: rename global_entry to rb_global_entry.
* compile.c, insns.def, iseq.c, vm_insnhelper.h: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/vm_core.h b/vm_core.h
index 9ff652e57..e838bba5d 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -491,16 +491,6 @@ typedef struct {
VALUE env;
} rb_binding_t;
-struct global_entry {
- struct global_variable *var;
- ID id;
-};
-
-struct global_entry *rb_global_entry(ID);
-VALUE rb_gvar_get(struct global_entry *);
-VALUE rb_gvar_set(struct global_entry *, VALUE);
-VALUE rb_gvar_defined(struct global_entry *);
-
/* used by compile time and send insn */
#define VM_CALL_ARGS_SPLAT_BIT (0x01 << 1)
#define VM_CALL_ARGS_BLOCKARG_BIT (0x01 << 2)