summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-17 02:38:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-17 02:38:35 +0000
commita149516165bbc57c730b15f0b05022145355d57f (patch)
tree766c8bb306a7434e4c5dd94b808f2fd8476278a9
parent0e97707713e7556f727d7b2e58798c55ad60b4c3 (diff)
downloadruby-a149516165bbc57c730b15f0b05022145355d57f.tar.gz
* vm_core.h: fixed function names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/mvm@25806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--vm_core.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/vm_core.h b/vm_core.h
index e22012b517..56b1a29b15 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -691,11 +691,11 @@ NOINLINE(void rb_gc_save_machine_context(rb_thread_t *));
void rb_mark_end_proc(struct end_proc_data **);
void rb_exec_end_proc(struct end_proc_data **);
-void *ruby_vm_xmalloc(struct rb_objspace *objspace, size_t size);
-void *ruby_vm_xmalloc2(struct rb_objspace *objspace, size_t n, size_t size);
-void *ruby_vm_xrealloc(struct rb_objspace *objspace, void *ptr, size_t size);
-void *ruby_vm_xrealloc2(struct rb_objspace *objspace, void *ptr, size_t n, size_t size);
-void ruby_vm_xfree(struct rb_objspace *objspace, void *ptr);
+void *ruby_objspace_xmalloc(struct rb_objspace *objspace, size_t size);
+void *ruby_objspace_xmalloc2(struct rb_objspace *objspace, size_t n, size_t size);
+void *ruby_objspace_xrealloc(struct rb_objspace *objspace, void *ptr, size_t size);
+void *ruby_objspace_xrealloc2(struct rb_objspace *objspace, void *ptr, size_t n, size_t size);
+void ruby_objspace_xfree(struct rb_objspace *objspace, void *ptr);
#define sysstack_error rb_errSysStack