Blame libpython.stp

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