blob: a44d78d31ec0f1c2814f7568154138a2c63ebabb (
plain)
1
2
3
4
5
6
7
|
probe process("uprobes_exe").function("*") {
printf("exe: %s=%s\n",probefunc(), usymname(uaddr()));
}
probe process("libuprobes_lib.so").function("*") {
printf("lib: %s=%s\n",probefunc(), usymname(uaddr()));
}
|