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

* vm.c (thread_memsize): don't ignore size of th->local_storage.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31992 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2011-06-11 05:21:30 +00:00
parent ac0ab1f675
commit 1485f3c168
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Jun 11 14:20:16 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* vm.c (thread_memsize): don't ignore size of th->local_storage.
Sat Jun 11 10:32:46 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/mkmf.rb: should quote arch_hdrdir and libpath for the case

2
vm.c
View file

@ -1761,7 +1761,7 @@ thread_memsize(const void *ptr)
size += th->stack_size * sizeof(VALUE);
}
if (th->local_storage) {
st_memsize(th->local_storage);
size += st_memsize(th->local_storage);
}
return size;
}