From cad41641dc15d4fa7e63bfc82c9d5a0e1110d880 Mon Sep 17 00:00:00 2001 From: Misha Shneerson Date: Mon, 5 Dec 2016 20:33:09 -0800 Subject: [PATCH] fix gbd debugging script Summary: I was getting an error when running commands in https://our.intern.facebook.com/intern/dex/fibers/gdb/ Reviewed By: andriigrynenko Differential Revision: D4283229 fbshipit-source-id: fe45847d0ec6cadfbce6fe9818066cce3e275a46 --- folly/fibers/scripts/utils.gdb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/folly/fibers/scripts/utils.gdb b/folly/fibers/scripts/utils.gdb index 5e73aeaa..a3bd0c8c 100644 --- a/folly/fibers/scripts/utils.gdb +++ b/folly/fibers/scripts/utils.gdb @@ -82,8 +82,8 @@ end # Print global FiberManager map define print_folly_fiber_manager_map - set $global_cache=*(('folly::fibers::(anonymous namespace)::GlobalCache'**) \ - &'folly::fibers::(anonymous namespace)::GlobalCache::instance()::ret') + set $global_cache=*(('folly::fibers::(anonymous namespace)::GlobalCache'**) \ + &'folly::fibers::(anonymous namespace)::GlobalCache::instance()::ret') printf " Global FiberManager map has %d entries.\n", \ $global_cache->map_->_M_h->_M_element_count -- 2.34.1