summaryrefslogtreecommitdiffstats
path: root/doc/tutorial/socket-trace.stp
blob: 53b69ecc602731e51619d506521a23e26f3cc9f3 (plain)
1
2
3
4
5
6
probe kernel.function("*@net/socket.c") {
  printf ("%s -> %s\n", thread_indent(1), probefunc())
}
probe kernel.function("*@net/socket.c").return {
  printf ("%s <- %s\n", thread_indent(-1), probefunc())
}