Blame libpython.stp

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