已用内存(以字节为单位)。 Linux 堆块大小
我正在使用 valgrind 来了解我的 Linux 应用程序正在使用多少字节。 因此,Valgrind 摘要显示了已使用的堆块数量。因此,我想知道这些块的大小是多少,以了解堆的大小。
这里是 Valgrind 的堆摘要:
==2604== HEAP SUMMARY:
==2604== in use at exit: 4,828,441 bytes in 1,416 blocks
==2604== total heap usage: 389,448,458 allocs, 389,447,042 frees, 4,664,484,349 bytes allocated
==2604==
我不能简单地执行块/字节,因为最后一个块不一定全部分配。 谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在大多数机器上(我很确定所有 i386 和 x86_64 机器)内存都是以 4096 字节块来管理的。
On most machines (I'm pretty sure all i386 and x86_64 machines) memory is managed in 4096 byte blocks.
添加选项
--leak-check=full
和valgrind
将按调用堆栈显示块的详细摘要。如果块仍然可达,您可能还需要添加--show-reachable=yes
。从那里,您可以使用一些简单的数学来了解每种类型块的平均大小。上面是平均大小的块:
Add the option
--leak-check=full
andvalgrind
will show a detailed summary of blocks by call-stack. You may need to add also--show-reachable=yes
if the blocks are still reachable. From there, you can use some simply math to know the average size of each type of block.That above are blocks of average size: