Advertisement
Guest User

Untitled

a guest
Apr 4th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. probe syscall.fcntl {
  2.     if (pid() == target()) {
  3.         printf("SYSCALL %s\n", probefunc())
  4.     }
  5. }
  6.  
  7. probe syscall.fcntl.return {
  8.     if (pid() == target()) {
  9.         printf("RETURN\n")
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement