程序调试相关
LinuxG_G
90年程序员,坐标深圳某IT公司。对新技术充满兴趣,使用的编程语言:C/C++,python, Linux shell;
熟悉常见数据结构及算法,Linux编程,了解java,Android开发。
技能库:
STL, python, 多线程编程, TCP/IP, Linux shell
java, android, 数据库
爱好运动,兴趣比较广泛:basketball,badminton,swim,running等
博客主要用Github 及 csdn,欢迎交流。
联系方式:qq 754860961
展开
-
gdb调试
先记录几篇不错的文章,后面再来补充下 https://github.com/selfboot/CS_Offer/blob/master/C%2B%2B/GDB_Debug.md https://deepzz.com/post/gdb-debug.html gdb调试 http://www.vimer.cn/2009/11/07/shi-yong-gdbdiao-shi-cheng-xu-xiang-jie/ 小技巧: [gdb查看shared_ptr](https://blog.csdn.net/cao1原创 2021-03-26 14:18:11 · 126 阅读 · 0 评论 -
pstack命令使用说明
pstack命令介绍 使用man查看pstack命令介绍: NAME gstack - print a stack trace of a running process SYNOPSIS gstack pid DESCRIPTION gstack attaches to the active process named by the pid on the command line, and prints out an execution stack tra原创 2020-10-11 20:23:19 · 860 阅读 · 0 评论 -
内存泄露的检测工具——Valgrind
1.1 下载安装 Valgrind是在linux系统下开发应用程序时用于调试内存问题的工具。它尤其擅长发现内存管理的问题,它可以检查程序运行时的内存泄漏问题。 它的官方网址是 http://www.valgrind.org/,下载最新版本的Valgrind,目前是3.11.0。 Linux下下载:wget http://www.valg转载 2015-12-19 09:13:53 · 1411 阅读 · 0 评论