Advertisement
agentzh

Untitled

Aug 28th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. === TEST 6: abort() in timer.profile
  2. --- stap
  3. global rest = 3
  4.  
  5. probe timer.profile {
  6. id = rest--;
  7. if (id <= 0) {
  8. abort();
  9. }
  10. printf("fire %d!\n", id);
  11. }
  12. --- out
  13. fire 3!
  14. fire 2!
  15. fire 1!
  16. --- no_dyninst
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement