You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
657 B
D
32 lines
657 B
D
3 weeks ago
|
self int indent;
|
||
|
|
||
|
python$target:::function-entry
|
||
|
/copyinstr(arg1) == "start"/
|
||
|
{
|
||
|
self->trace = 1;
|
||
|
}
|
||
|
|
||
|
python$target:::function-entry
|
||
|
/self->trace/
|
||
|
{
|
||
|
printf("%d\t%*s:", timestamp, 15, probename);
|
||
|
printf("%*s", self->indent, "");
|
||
|
printf("%s:%s:%d\n", basename(copyinstr(arg0)), copyinstr(arg1), arg2);
|
||
|
self->indent++;
|
||
|
}
|
||
|
|
||
|
python$target:::function-return
|
||
|
/self->trace/
|
||
|
{
|
||
|
self->indent--;
|
||
|
printf("%d\t%*s:", timestamp, 15, probename);
|
||
|
printf("%*s", self->indent, "");
|
||
|
printf("%s:%s:%d\n", basename(copyinstr(arg0)), copyinstr(arg1), arg2);
|
||
|
}
|
||
|
|
||
|
python$target:::function-return
|
||
|
/copyinstr(arg1) == "start"/
|
||
|
{
|
||
|
self->trace = 0;
|
||
|
}
|