summaryrefslogtreecommitdiffstats
path: root/libpython.stp
blob: f41da801d5a7e396e138ed161b60fe54c99cefd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Systemtap tapset to make it easier to trace Python */

/*
   Define python.function.entry/return:
*/
probe python.function.entry = process("python3").library("LIBRARY_PATH").mark("function__entry")
{
    filename = user_string($arg1);
    funcname = user_string($arg2);
    lineno = $arg3;
}
probe python.function.return = process("python3").library("LIBRARY_PATH").mark("function__return")
{
    filename = user_string($arg1);
    funcname = user_string($arg2);
    lineno = $arg3;
}