Advertisement
Guest User

Untitled

a guest
May 24th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.40 KB | None | 0 0
  1. Atom ION build
  2. root ~ # strace -c python -c pass
  3. % time seconds usecs/call calls errors syscall
  4. ------ ----------- ----------- --------- --------- ----------------
  5. 100.00 0.000017 4 4 ioctl
  6. 0.00 0.000000 0 396 read
  7. 0.00 0.000000 0 195 137 open
  8. 0.00 0.000000 0 59 close
  9. 0.00 0.000000 0 88 61 stat
  10. 0.00 0.000000 0 89 fstat
  11. 0.00 0.000000 0 3 lstat
  12. 0.00 0.000000 0 82 mmap
  13. 0.00 0.000000 0 13 mprotect
  14. 0.00 0.000000 0 52 munmap
  15. 0.00 0.000000 0 12 brk
  16. 0.00 0.000000 0 68 rt_sigaction
  17. 0.00 0.000000 0 1 rt_sigprocmask
  18. 0.00 0.000000 0 1 1 access
  19. 0.00 0.000000 0 1 execve
  20. 0.00 0.000000 0 2 getdents
  21. 0.00 0.000000 0 23 23 unlink
  22. 0.00 0.000000 0 1 1 readlink
  23. 0.00 0.000000 0 1 getrlimit
  24. 0.00 0.000000 0 1 getuid
  25. 0.00 0.000000 0 1 getgid
  26. 0.00 0.000000 0 1 geteuid
  27. 0.00 0.000000 0 1 getegid
  28. 0.00 0.000000 0 1 arch_prctl
  29. 0.00 0.000000 0 1 set_tid_address
  30. 0.00 0.000000 0 1 openat
  31. 0.00 0.000000 0 1 set_robust_list
  32. ------ ----------- ----------- --------- --------- ----------------
  33. 100.00 0.000017 1099 223 total
  34.  
  35. RPi build:
  36.  
  37.  
  38. root ~ # strace -c python -c pass
  39. % time seconds usecs/call calls errors syscall
  40. ------ ----------- ----------- --------- --------- ----------------
  41. 36.08 0.000188 1 228 169 open
  42. 35.32 0.000184 61 3 lstat64
  43. 28.60 0.000149 2 61 close
  44. 0.00 0.000000 0 401 read
  45. 0.00 0.000000 0 23 23 unlink
  46. 0.00 0.000000 0 1 execve
  47. 0.00 0.000000 0 1 1 access
  48. 0.00 0.000000 0 8 brk
  49. 0.00 0.000000 0 4 ioctl
  50. 0.00 0.000000 0 1 1 readlink
  51. 0.00 0.000000 0 53 munmap
  52. 0.00 0.000000 0 1 uname
  53. 0.00 0.000000 0 12 mprotect
  54. 0.00 0.000000 0 68 rt_sigaction
  55. 0.00 0.000000 0 1 rt_sigprocmask
  56. 0.00 0.000000 0 1 getrlimit
  57. 0.00 0.000000 0 77 mmap2
  58. 0.00 0.000000 0 110 74 stat64
  59. 0.00 0.000000 0 92 fstat64
  60. 0.00 0.000000 0 1 getuid32
  61. 0.00 0.000000 0 1 getgid32
  62. 0.00 0.000000 0 1 geteuid32
  63. 0.00 0.000000 0 1 getegid32
  64. 0.00 0.000000 0 4 getdents64
  65. 0.00 0.000000 0 1 fcntl64
  66. 0.00 0.000000 0 1 set_tid_address
  67. 0.00 0.000000 0 2 openat
  68. 0.00 0.000000 0 1 set_robust_list
  69. ------ ----------- ----------- --------- --------- ----------------
  70. 100.00 0.000521 1159 268 total
  71. System call usage summary for 32 bit mode:
  72. % time seconds usecs/call calls errors syscall
  73. ------ ----------- ----------- --------- --------- ----------------
  74. nan 0.000000 0 1 set_tls
  75. ------ ----------- ----------- --------- --------- ----------------
  76. 100.00 0.000000 1 total
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement