随笔分类 -  linux内核

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页
摘要:(EDIT: per the first answer below the current "trick" seems to be using an Atom processor. But I hope some gdb guru can answer if this is a fundamental limitation, or whether there adding support fo... 阅读全文
posted @ 2016-06-08 23:08 zengkefu 阅读(817) 评论(0) 推荐(0) 编辑
摘要:How can we list all the functions being called in an application For any realistically sized application, this list will have thousands of entries, which will probably make it useless. You can find ... 阅读全文
posted @ 2016-06-08 23:05 zengkefu 阅读(6867) 评论(0) 推荐(0) 编辑
摘要:Using Uprobes (since Linux 3.5) Assuming you wanted to trace all functions in ~/Desktop/datalog-2.2/datalog when calling it with the parameters -l ~/D 阅读全文
posted @ 2016-06-08 22:50 zengkefu 阅读(672) 评论(0) 推荐(0) 编辑
摘要:http://www.lenky.info/archives/2013/02/2202 [root@localhost trace]# readelf -s ./test | gawk ' { if($4 == "FUNC" && $2 != 0) { print "# code for " $NF 阅读全文
posted @ 2016-06-08 22:15 zengkefu 阅读(3722) 评论(0) 推荐(0) 编辑
摘要:[root@monitor samples]# opcontrol --statusDaemon paused: pid 4439Session-dir: /var/lib/oprofileSeparate options: nonevmlinux file: noneImage filter: n 阅读全文
posted @ 2016-06-08 20:50 zengkefu 阅读(1659) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/rocketfan/archive/2009/11/15/1603465.html http://blog.csdn.net/stanjiang2010/article/details/5655143 http://blog.csdn.net/stanj 阅读全文
posted @ 2016-06-08 16:51 zengkefu 阅读(2154) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/15480802/viewspace-753819/ http://blog.itpub.net/15480802/viewspace-753757/ http://blog.itpub.net/15480802/viewspace-753890/ htt 阅读全文
posted @ 2016-06-08 16:42 zengkefu 阅读(1610) 评论(0) 推荐(0) 编辑
摘要:http://www.tinylab.org/ http://linux-talents.tinylab.org/lzuoss/ http://www.tinylab.org/source-code-analysis-dynamic-analysis-of-linux-kernel-function 阅读全文
posted @ 2016-06-08 16:16 zengkefu 阅读(235) 评论(0) 推荐(0) 编辑
摘要:http://savannah.gnu.org/projects/cflow http://tinylab.org/linux-0.11-lab/ http://ftp.gnu.org/gnu/cflow/ https://github.com/tinyclub http://www.tinylab 阅读全文
posted @ 2016-06-08 15:04 zengkefu 阅读(1158) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-06-08 12:15 zengkefu 阅读(248) 评论(0) 推荐(0) 编辑
摘要:本文链接:http://codingstandards.iteye.com/blog/840055 用途说明 Graphviz (Graph Visualization Software的缩写)是一个由AT&T实验室启动的开源工具包,用于绘制DOT语言脚本描述的图形。它也提供了供其它软件使用的库。 阅读全文
posted @ 2016-06-08 12:10 zengkefu 阅读(6216) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/elitemouse/article/details/41680113 http://www.tinylab.org/callgraph-draw-the-calltree-of-c-functions/ http://www.cnblogs.com/lou 阅读全文
posted @ 2016-06-08 11:45 zengkefu 阅读(2736) 评论(0) 推荐(1) 编辑
摘要:使用valgrind的callgrind工具进行多线程性能分析 yum install valgrind / wget http://valgrind.org/downloads/valgrind-3.4.1.tar.bz2tar xvf valgrind-3.4.1.tar.bz2cd valgr 阅读全文
posted @ 2016-06-08 11:03 zengkefu 阅读(742) 评论(0) 推荐(1) 编辑
摘要:监控 测试 优化 阅读全文
posted @ 2016-06-08 10:22 zengkefu 阅读(120) 评论(0) 推荐(0) 编辑
摘要:http://blog.chinaunix.net/uid-10540984-id-3854969.html http://blog.csdn.net/bluebeach/article/details/5912062 http://blog.csdn.net/zhangskd/article/de 阅读全文
posted @ 2016-06-08 10:05 zengkefu 阅读(244) 评论(0) 推荐(0) 编辑
摘要:调查用户空间程序某函数最常调用路径 November 17th, 2010Yu FengLeave a commentGo to comments 原创文章,转载请注明: 转载自系统技术非业余研究 本文链接地址: 调查用户空间程序某函数最常调用路径 在做系统调优或者调查性能问题的的时候,比如说调查一 阅读全文
posted @ 2016-06-07 17:15 zengkefu 阅读(252) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/kaiwii/article/details/7030178 到底是BIO还是BH?答案是BIO与BH 阅读全文
posted @ 2016-06-07 17:07 zengkefu 阅读(132) 评论(0) 推荐(0) 编辑
摘要:http://blog.chinaunix.net/uid-24774106-id-4096470.html http://blog.csdn.net/wyzxg/article/details/7449821 了解IO协议栈 mount -t debugfs debugfs /sys/kernel 阅读全文
posted @ 2016-06-07 16:55 zengkefu 阅读(581) 评论(0) 推荐(0) 编辑
摘要:http://www.lenky.info/ http://blog.csdn.net/ztz0223/article/details/7874759 http://user-mode-linux.sourceforge.net/ http://blog.csdn.net/ztz0223/artic 阅读全文
posted @ 2016-06-07 16:14 zengkefu 阅读(307) 评论(0) 推荐(0) 编辑
摘要:立即重启计算机 echo "b" > /proc/sysrq-trigger 立即关闭计算机 echo "o" > /proc/sysrq-trigger 导出内存分配的信息 echo "m" > proc/sysrq-trigger (可以用/var/log/message查看)Outputs m 阅读全文
posted @ 2016-06-07 15:12 zengkefu 阅读(289) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页