Server IP : 162.241.126.129 / Your IP : 3.133.127.131 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/doc/perl-devel/ |
Upload File : |
/* Example of the perl systemtap tapset shows a nested view of perl subroutine calls and returns across the whole system. To run: stap perl-example.stp (for all perl processes) For specific perl process: stap perl-example.stp -c COMMAND */ probe perl.sub.call { printf("%s => sub: %s, filename: %s, line: %d, package: %s\n", thread_indent(1), sub, filename, lineno, package) } probe perl.sub.return { printf("%s <= sub: %s, filename: %s, line: %d, package: %s\n", thread_indent(-1), sub, filename, lineno, package) }