Sophie

Sophie

distrib > Fedora > 19 > i386 > media > updates-src > by-pkgid > f465da0fc6dd6435acdc399895327d59 > files > 44

python3-3.3.2-11.fc19.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;
}