* 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
@ -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>
|
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
|
* 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);
|
size += th->stack_size * sizeof(VALUE);
|
||||||
}
|
}
|
||||||
if (th->local_storage) {
|
if (th->local_storage) {
|
||||||
st_memsize(th->local_storage);
|
size += st_memsize(th->local_storage);
|
||||||
}
|
}
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user