Advertisement
tthtlc

dtrace function tracing

Jul 20th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. pid$1::$2:entry
  2. {
  3. self->trace = 1;
  4. }
  5.  
  6. pid$1::$2:return
  7. /self->trace/
  8. {
  9. self->trace = 0;
  10. }
  11.  
  12. pid$1:::entry,
  13. pid$1:::return
  14. /self->trace/
  15. {
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement