Guest User

Untitled

a guest
Nov 20th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. pmichaud@kiwi:~/p6/parrot$ cat gc-sub.pir
  2. .sub 'main' :main
  3. .local int N
  4. N = 1000000
  5.  
  6. $I0 = 0
  7. loop:
  8. unless $I0 < N goto done
  9. 'no-op'()
  10. inc $I0
  11. goto loop
  12. done:
  13.  
  14. sleep 1440
  15. .end
  16.  
  17. .sub 'no-op'
  18. noop
  19. .end
  20.  
  21. pmichaud@kiwi:~/p6/parrot$ ./parrot gc-sub.pir &
  22. [1] 25854
  23. pmichaud@kiwi:~/p6/parrot$ ps -C parrot -o vsz,cmd
  24. VSZ CMD
  25. 239476 ./parrot gc-sub.pir
  26. pmichaud@kiwi:~/p6/parrot$
Add Comment
Please, Sign In to add comment