Current Path: > > opt > > alt > python33 > share > > doc > alt-python33-libs
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
LICENSE | File | 12773 bytes | September 19 2017 07:32:02. | |
README | File | 6766 bytes | September 19 2017 07:32:02. | |
pyfuntop.stp | File | 537 bytes | April 17 2024 16:50:50. | |
systemtap-example.stp | File | 613 bytes | April 17 2024 16:50:50. |
/* Example usage of the Python systemtap tapset to show a nested view of all Python function calls (and returns) across the whole system. Run this using stap systemtap-example.stp to instrument all Python processes on the system, or (for example) using stap systemtap-example.stp -c COMMAND to instrument a specific program (implemented in Python) */ probe python.function.entry { printf("%s => %s in %s:%d\n", thread_indent(1), funcname, filename, lineno); } probe python.function.return { printf("%s <= %s in %s:%d\n", thread_indent(-1), funcname, filename, lineno); }
SILENT KILLER Tool