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:
parent
ac0ab1f675
commit
1485f3c168
2 changed files with 5 additions and 1 deletions
|
@ -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
2
vm.c
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue