D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
share
/
systemtap
/
tapset
/
Filename :
libperl5.26.3-64.stp
back
Copy
/* This probe will fire when the perl script enters a subroutine. */ probe perl.sub.call = process("/usr/lib64/libperl.so.5.26").mark("sub__entry") { sub = user_string($arg1) filename = user_string($arg2) lineno = $arg3 package = user_string($arg4) } /* This probe will fire when the return from a subroutine has been hit. */ probe perl.sub.return = process("/usr/lib64/libperl.so.5.26").mark("sub__return") { sub = user_string($arg1) filename = user_string($arg2) lineno = $arg3 package = user_string($arg4) } /* This probe will fire when the Perl interperter changes state. */ probe perl.phase.change = process("/usr/lib64/libperl.so.5.26").mark("phase__change") { newphase = user_string($arg1) oldphase = user_string($arg2) } /* Fires when Perl has successfully loaded an individual file. */ probe perl.loaded.file = process("/usr/lib64/libperl.so.5.26").mark("loaded__file") { filename = user_string($arg1) } /* Fires when Perl is about to load an individual file. */ probe perl.loading.file = process("/usr/lib64/libperl.so.5.26").mark("loading__file") { filename = user_string($arg1) } /* Traces the execution of each opcode in the Perl runloop. */ probe perl.op.entry = process("/usr/lib64/libperl.so.5.26").mark("op__entry") { opname = user_string($arg1) }
Name
Size
Last Modified
Owner
Permissions
Actions
libperl5.26.3-64.stp
1.308
KB
May 18 2023 9:35:09
root
0644
libpython2.7-64.stp
0.51
KB
April 10 2024 4:58:42
root
0644
libruby.so.2.5.stp
8.223
KB
December 06 2024 2:24:38
root
0644
2017 © D7net | D704T team