angelheap cannot handle the new tcache design in 2.42. The issue is that tcache now has "small" tcache and "large" tcache, which means the layout is a bit different from the flat layout like before. so the mp_->tcache_bins is gone, which is something angelheap uses to determine whether tcache is enabled or not: https://github.com/scwuaptx/Pwngdb/blob/master/angelheap/angelheap.py#L554
Leading to angelheap thinking tcache is not enabled.
angelheap cannot handle the new tcache design in 2.42. The issue is that tcache now has "small" tcache and "large" tcache, which means the layout is a bit different from the flat layout like before. so the
mp_->tcache_binsis gone, which is something angelheap uses to determine whether tcache is enabled or not: https://github.com/scwuaptx/Pwngdb/blob/master/angelheap/angelheap.py#L554Leading to angelheap thinking tcache is not enabled.