1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/fiddle/closure.c (closure_data_type),

ext/fiddle/function.c (function_data_type): rb_data_type_t has
  changed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-07-20 09:23:08 +00:00
parent 81cc3b2655
commit 6de2f601af
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Tue Jul 20 18:23:04 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/fiddle/closure.c (closure_data_type),
ext/fiddle/function.c (function_data_type): rb_data_type_t has
changed.
Tue Jul 20 14:21:38 2010 Narihiro Nakamura <authorNari@gmail.com>
* gc.c: don't call after_gc_sweep() after when garbage_collect()

View file

@ -47,7 +47,7 @@ closure_memsize(const void * ptr)
const rb_data_type_t closure_data_type = {
"fiddle/closure",
0, dealloc, closure_memsize,
{0, dealloc, closure_memsize,},
};
void

View file

@ -27,7 +27,7 @@ function_memsize(const void *p)
const rb_data_type_t function_data_type = {
"fiddle/function",
0, deallocate, function_memsize,
{0, deallocate, function_memsize,},
};
static VALUE