5257f0
/* Example tapset file.
5257f0
 *
5257f0
 * You can execute the tapset using following command (please adjust the path
5257f0
 * prior running the command, if needed):
5257f0
 * 
5257f0
 * stap /usr/share/doc/ruby-2.0.0.0/ruby-exercise.stp -c "ruby -e \"puts 'test'\""
5257f0
 */
5257f0
5257f0
probe ruby.cmethod.entry {
5257f0
  printf("%d -> %s::%s %s:%d\n", tid(), classname, methodname, file, line);
5257f0
}
5257f0
5257f0
probe ruby.cmethod.return {
5257f0
  printf("%d <- %s::%s %s:%d\n", tid(), classname, methodname, file, line);
5257f0
}
5257f0
5257f0
probe ruby.method.entry {
5257f0
  printf("%d -> %s::%s %s:%d\n", tid(), classname, methodname, file, line);
5257f0
}
5257f0
5257f0
probe ruby.method.return {
5257f0
  printf("%d <- %s::%s %s:%d\n", tid(), classname, methodname, file, line);
5257f0
}
5257f0
5257f0
probe ruby.gc.mark.begin { printf("%d gc.mark.begin\n", tid()); }
5257f0
5257f0
probe ruby.gc.mark.end { printf("%d gc.mark.end\n", tid()); }
5257f0
5257f0
probe ruby.gc.sweep.begin { printf("%d gc.sweep.begin\n", tid()); }
5257f0
5257f0
probe ruby.gc.sweep.end { printf("%d gc.sweep.end\n", tid()); }
5257f0
5257f0
probe ruby.object.create{
5257f0
  printf("%d obj.create %s %s:%d\n", tid(), classname, file, line);
5257f0
}
5257f0
5257f0
probe ruby.raise {
5257f0
  printf("%d raise %s %s:%d\n", tid(), classname, file, line);
5257f0
}