Server IP : 162.241.126.129 / Your IP : 3.138.67.56 Web Server : Apache System : Linux 162-241-126-129.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64 User : rvway5nu4 ( 1018) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/systemtap/tapset/ |
Upload File : |
/* Systemtap tapset to make it easier to trace Python */ /* Define python.function.entry/return: */ probe python.function.entry = process("python").library("/usr/lib64/libpython2.7.so.1.0").mark("function__entry") { filename = user_string($arg1); funcname = user_string($arg2); lineno = $arg3; } probe python.function.return = process("python").library("/usr/lib64/libpython2.7.so.1.0").mark("function__return") { filename = user_string($arg1); funcname = user_string($arg2); lineno = $arg3; }