摘要:
http://m.blog.csdn.net/blog/moonvs2010/11392959 阅读全文
posted @ 2015-09-16 23:23
zengkefu
阅读(299)
评论(0)
推荐(0)
摘要:
[root@localhost ~]# cat test.c#include int main( void) {int a=0; a=fun(10,20); printf("%d\n",a);}int fun(int a,int b){ return a+b; }stap -e 'probe pr... 阅读全文
posted @ 2015-09-16 21:46
zengkefu
阅读(392)
评论(0)
推荐(0)
摘要:
[root@localhost ~]# cat user.stpprobe process(@1).function(@2){print_ubacktrace();exit();}session 1 执行 stap user.stp "./a.out" "fun"session 2 执行 [root... 阅读全文
posted @ 2015-09-16 20:47
zengkefu
阅读(659)
评论(0)
推荐(0)
摘要:
#include int main( void){int a=0;a=fun(1115,20);printf("%d\n",a);}int fun(int a,int b){ return a+b;}test.cgcc -g test.c生成 a.out----------------------... 阅读全文
posted @ 2015-09-16 20:03
zengkefu
阅读(1364)
评论(0)
推荐(0)
摘要:
1.JAVA_HOME D:\Program Files (x86)\Java\jdk1.6.0_252.path %JAVA_HOME%\bin; %JAVA_HOME%\jre\bin;3.CLASSPATH.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\too... 阅读全文
posted @ 2015-09-16 16:39
zengkefu
阅读(134)
评论(0)
推荐(0)
摘要:
https://sourceware.org/systemtap/wiki 阅读全文
posted @ 2015-09-16 14:06
zengkefu
阅读(192)
评论(0)
推荐(0)
摘要:
2.6内核 make = make bzImage + make modules无非是改下Makefile而已2.4 内核01.make menuconfig02.make dep03.make bzimage04.make modules05.make modules_install06.make... 阅读全文
posted @ 2015-09-16 07:14
zengkefu
阅读(1334)
评论(0)
推荐(0)