Blame SOURCES/libpython.stp

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