summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authornari <nari@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-22 07:26:55 +0000
committernari <nari@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-22 07:26:55 +0000
commit9d2f54b3e9eb242da781970c5df458611f5ec332 (patch)
tree38edd324989906a8d8d5b85ae607db6f0941fe60 /internal.h
parent5a02bc4ff413e81e0df94cd71e1b0288b572dac1 (diff)
* include/ruby/intern.h (rb_gc_set_params): Deprecate
rb_gc_set_params because it's only used in ruby internal. * internal.h (ruby_gc_set_params): Declare rb_gc_set_params's alias function. * gc.c: ditto. * ruby.c: use ruby_gc_set_params. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 10819a21c7..e3eb2fe810 100644
--- a/internal.h
+++ b/internal.h
@@ -431,6 +431,7 @@ void *ruby_mimmalloc(size_t size);
void ruby_mimfree(void *ptr);
void rb_objspace_set_event_hook(const rb_event_flag_t event);
void rb_gc_writebarrier_remember_promoted(VALUE obj);
+void ruby_gc_set_params(void);
void *ruby_sized_xrealloc(void *ptr, size_t new_size, size_t old_size) RUBY_ATTR_ALLOC_SIZE((2));
void ruby_sized_xfree(void *x, size_t size);