欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

Unix下C程序内存泄漏检测工具Valgrind的安装与使用详解

时间:2021-03-14 09:48:45|栏目:C代码|点击:
Valgrind是一款用于内存调试、内存泄漏检测以及性能分析的软件开发工具。
Valgrind的最初作者是Julian Seward,他于2006年由于在开发Valgrind上的工作获得了第二届Google-O'Reilly开源代码奖。
Valgrind遵守GNU通用公共许可证条款,是一款自由软件。

官网
http://www.valgrind.org
 
下载与安装
#wget http://www.valgrind.org/downloads/valgrind-3.8.1.tar.bz2
#tar xvf valgrind-3.8.1.tar.bz2
#cd valgrind-3.8.1
#./configure --prefix=/usr/local/webserver/valgrind
#make
#make install

测试代码
复制代码 代码如下:

#include <stdlib.h>
int* func(void)
{
&nbsp;&nbsp; int* x = malloc(10 * sizeof(int));
&nbsp;&nbsp; x[10] = 0;&nbsp; //问题1: 数组下标越界
}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;int main(void)
{
&nbsp;&nbsp; int* x=NULL;
&nbsp;&nbsp; x=func();
&nbsp;&nbsp; //free(x);&nbsp;
&nbsp;&nbsp; x=NULL;
&nbsp;&nbsp; return 0;&nbsp;&nbsp; //问题2: 内存没有释放
&nbsp;}

编译
#gcc -g -o test test.c

内存检查
#valgrind --tool=memcheck --leak-check=yes --show-reachable=yes ./test

报告:


说明
Invalid write of size 4:表示数组越界写了4字节
40 bytes in 1 blocks:表示因程序退出而发生内存泄露40字节

修复bug,重新检查提示已经没有内存泄露



文档:
Valgrind 中包含的 Memcheck 工具可以检查以下的程序错误:

使用未初始化的内存 (Use of uninitialised memory)
使用已经释放了的内存 (Reading/writing memory after it has been free'd)
使用超过malloc分配的内存空间(Reading/writing off the end of malloc'd blocks)
对堆栈的非法访问 (Reading/writing inappropriate areas on the stack)
申请的空间是否有释放 (Memory leaks ?C where pointers to malloc'd blocks are lost forever)
malloc/free/new/delete申请和释放内存的匹配(Mismatched use of malloc/new/new [] vs free/delete/delete [])
src和dst的重叠(Overlapping src and dst pointers in memcpy() and related functions)
重复free

上一篇:浅析C语言中sscanf 的用法

栏    目:C代码

下一篇:深入理解C语言指针及占据内存空间

本文标题:Unix下C程序内存泄漏检测工具Valgrind的安装与使用详解

本文地址:http://www.codeinn.net/misctech/80306.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有