Home | History | Annotate | Download | only in dtracedata
      1 python$target:::function-entry
      2 /copyinstr(arg1) == "start"/
      3 {
      4     self->trace = 1;
      5 }
      6 
      7 python$target:::gc-start,
      8 python$target:::gc-done
      9 /self->trace/
     10 {
     11     printf("%d\t%s:%ld\n", timestamp, probename, arg0);
     12 }
     13 
     14 python$target:::function-return
     15 /copyinstr(arg1) == "start"/
     16 {
     17     self->trace = 0;
     18 }
     19