Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates-src > by-pkgid > d854deaab2ab59bf2dd09e85612766a4 > files > 4

python3-3.1.2-7.fc13.src.rpm

/* Systemtap tapset to make it easier to trace Python */

/*
   Define python.function.entry/return:
*/
probe python.function.entry = process("python3").library("LIBRARY_PATH").mark("function__entry")
{
    filename = user_string($arg1);
    funcname = user_string($arg2);
    lineno = $arg3;
}
probe python.function.return = process("python3").library("LIBRARY_PATH").mark("function__return")
{
    filename = user_string($arg1);
    funcname = user_string($arg2);
    lineno = $arg3;
}