进来事情比较多,离职,入职,搬家,然后宽带没办好。进入新公司,很多精力花费在研究公司代码上,同时,需要学习shell和数据库 PHP,精力比较分散,所以好久没有写博客了。 近乡情更怯,先发一篇比较简单的,热热身,找找感觉。
mtrace是一个有效的工具来查看有没有内存泄漏。它会将内存出现的异常记录在日志中,而日志的路径是可以指定的。
- #include<stdio.h>
- #include<stdlib.h>
- #include<mcheck.h>
- #include<assert.h>
- int main()
- {
- assert(!setenv("MALLOC_TRACE","./malloc.log",1)) ;
- mtrace();
- int *p = malloc(100*sizeof(int));
- return 0;
- }
我们看上面的代码,mtrace打开跟踪开关,我们malloc了400个字节的内存空间,但是我们并没有调用free将malloc出来的空间释放掉(当然函数退出也就释放了,但是这种释放不太优雅)。
mtrace会将内存情况记录下来,记录的结果存在什么地方呢?由环境变量MALLOC_TRACE决定。所以实际上有两种设置环境变量的方法,一种情况就是代码中体现的:
1 setenv函数设定环境变量 MALLOC_TRACE
- setenv("MALLOC_TRACE","./malloc.log",1)
2 shell设定环境变量MALLOC_TRACE .
- export MALLOC_TRACE=~/program/C/MEM_CHECK/memcheck.log
下面看输出情况:
- root@libin:~/program/C/mem_bug# gcc -o test test.c -g
- root@libin:~/program/C/mem_bug# ./test
- root@libin:~/program/C/mem_bug# ll
- 总用量 28
- drwxr-xr-x 2 root root 4096 2012-04-03 12:17 ./
- drwxr-xr-x 36 root root 4096 2012-04-03 12:01 ../
- -rw-r--r-- 1 root root 155 2012-04-03 12:17 malloc.log
- -rwxr-xr-x 1 root root 8550 2012-04-03 12:17 test*
- -rw-r--r-- 1 root root 208 2012-04-03 12:17 test.c
- root@libin:~/program/C/mem_bug# mtrace ./test malloc.log
- - 0x09a68008 Free 3 was never alloc'd 0x1da8ef
- - 0x09a68028 Free 4 was never alloc'd 0x1da8f7
- Memory not freed:
- -----------------
- Address Size Caller
- 0x09a683b0 0x190 at /home/libin/program/C/mem_bug/test.c:11
阅读(5329) | 评论(3) | 转发(4) |