Trying to locate a leak! What does anon mean for pmap?
Anon blocks are “large” blocks allocated via malloc or mmap — see the manpages. As such, they have nothing to do with the Java heap (other than the fact that the entire heap should be stored in just such a block). In my experience, thread stacks also use anon blocks. If you see a lot … Read more