aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-12 20:49:19 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-12 20:49:19 +0000
commit5a9b4e165e1118f0d2412f630e9a8c6613051838 (patch)
treee2057bc01109b93901b0afa1c10b1f0d572b9bb0 /cont.c
parent069bb99e115eb10c682e5b17d5c80e1963f28f30 (diff)
downloadruby-5a9b4e165e1118f0d2412f630e9a8c6613051838.tar.gz
cont.c (fiber_memsize): do not rely on ROOT_FIBER_CONTEXT
We can check if the fiber we're interested in is the th->root_fiber for the owner thread, so there is no need to use ROOT_FIBER_CONTEXT. Note: there is no guarantee th->ec points to &th->root_fiber->cont.saved_ec, thus vm::thread_memsize may not account for root fiber correctly (pre-existing bug). [Bug #15050] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64705 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/cont.c b/cont.c
index 2b83c52768..27f956f5c8 100644
--- a/cont.c
+++ b/cont.c
@@ -493,12 +493,15 @@ static size_t
fiber_memsize(const void *ptr)
{
const rb_fiber_t *fib = ptr;
- size_t size = 0;
+ size_t size = sizeof(*fib);
+ const rb_execution_context_t *saved_ec = &fib->cont.saved_ec;
+ const rb_thread_t *th = rb_ec_thread_ptr(saved_ec);
- size = sizeof(*fib);
- if (fib->cont.type != ROOT_FIBER_CONTEXT &&
- fib->cont.saved_ec.local_storage != NULL) {
- size += st_memsize(fib->cont.saved_ec.local_storage);
+ /*
+ * vm.c::thread_memsize already counts th->ec->local_storage
+ */
+ if (saved_ec->local_storage && fib != th->root_fiber) {
+ size += st_memsize(saved_ec->local_storage);
}
size += cont_memsize(&fib->cont);
return size;