Heray-Was-Here
Server : Apache
System : Linux vps37394.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User : jasonp18 ( 1000)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /usr/share/systemtap/tapset/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/systemtap/tapset/libperl5.16.3-64.stp
/*
   This probe will fire when the perl script enters a subroutine.
 */

probe perl.sub.call = process("/usr/lib64/perl5/CORE/libperl.so").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/perl5/CORE/libperl.so").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/perl5/CORE/libperl.so").mark("phase__change")
{
  newphase = user_string($arg1)
  oldphase = user_string($arg2)
  
}

Hry