Sophie

Sophie

distrib > CentOS > 5 > x86_64 > by-pkgid > 2b12d0199a2bbc4a02ef3834d926ac4a > files > 266

systemtap-client-1.8-6.el5.x86_64.rpm

#!/usr/bin/stap

global profile[20000], pcount
probe timer.profile {
  pcount <<< 1
  fn = user_mode() ?
      ("u:".umodname(uaddr()).":".usymname(uaddr()))  :
      ("k:".modname(addr()).":".symname(addr()));
  profile[fn] <<< 1
}
probe timer.ms(5000) {
  printf ("\n--- %d samples recorded:\n", @count(pcount))
  foreach (f in profile- limit 20) {
    printf ("%-30s\t%6d\n", f, @count(profile[f]))
  }
  delete profile
  delete pcount
}