systemtap 用户态调试3
[root@localhost ~]# cat test.c#include <stdio.h>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 process("a.out").f...