Blame SOURCES/libpython.stp

2a6dbc
/* Systemtap tapset to make it easier to trace Python */
2a6dbc
2a6dbc
/*
2a6dbc
   Define python.function.entry/return:
2a6dbc
*/
2a6dbc
probe python.function.entry = process("python3").library("LIBRARY_PATH").mark("function__entry")
2a6dbc
{
2a6dbc
    filename = user_string($arg1);
2a6dbc
    funcname = user_string($arg2);
2a6dbc
    lineno = $arg3;
2a6dbc
}
2a6dbc
probe python.function.return = process("python3").library("LIBRARY_PATH").mark("function__return")
2a6dbc
{
2a6dbc
    filename = user_string($arg1);
2a6dbc
    funcname = user_string($arg2);
2a6dbc
    lineno = $arg3;
2a6dbc
}