Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > 8e87fca2f49595adc16d9aa519a6edad > files > 94

systemtap-1.6-1.fc14.x86_64.rpm

#!/usr/bin/stap
probe kernel.data($1).rw
{
  printf("%p value is accessed\n", $1);
  print_backtrace();
}