????

Your IP : 216.73.216.174


Current Path : /usr/share/systemtap/examples/memory/
Upload File :
Current File : //usr/share/systemtap/examples/memory/hw_watch_addr.stp

#!/usr/bin/stap

%( CONFIG_HAVE_HW_BREAKPOINT == "y" %?
probe kernel.data($1).rw
{
  printf("%p value is accessed\n", $1);
  print_backtrace();
}
%:
probe never {}
%)