All pastes #2075673 Raw Edit

Systemtap

public text v1 · immutable
#2075673 ·published 2011-06-06 18:24 UTC
rendered paste body
// Usage: sudo stap gst-memtrace2.stp -c "./a.out file:///home/rishi/devel/gstreamer/bgo-650258.mkv"

probe process("/usr/lib/libgstreamer-0.10.so.0.29.0").function("gst_mini_object_new") {
  if (target() == pid())
    {
      println ("GST_MINI_OBJECT new");
    }
}
probe process("/usr/lib/libgstreamer-0.10.so.0.29.0").function("gst_mini_object_finalize") {
  if (target() == pid())
    {
      println ("GST_MINI_OBJECT finalize");
    }
}

probe begin {
  printf ("// gst-memtrace2.stp; target=%d\n", target());
}