* cont.c (fiber_memsize): Return size.

Before this change, fiber_memsize always returns 0.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29406 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-10-03 23:00:21 +00:00
Родитель e1d5d4e7f2
Коммит eaa4e02d45
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Mon Oct 4 07:57:51 2010 NARUSE, Yui <naruse@ruby-lang.org>
* cont.c (fiber_memsize): Return size.
Before this change, fiber_memsize always returns 0.
Mon Oct 4 07:16:55 2010 NARUSE, Yui <naruse@ruby-lang.org>
* enc/unicode.c (onigenc_unicode_property_name_to_ctype):

2
cont.c
Просмотреть файл

@ -319,7 +319,7 @@ fiber_memsize(const void *ptr)
}
size += cont_memsize(&fib->cont);
}
return 0;
return size;
}
static void