Blame SOURCES/libpython.stp

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