734417
/*
734417
   This probe will fire when the perl script enters a subroutine.
734417
 */
734417
734417
probe perl.sub.call = process("LIBRARY_PATH").mark("sub__entry")
734417
{
734417
734417
  sub = user_string($arg1)
734417
  filename = user_string($arg2)
734417
  lineno = $arg3
734417
  package = user_string($arg4)
734417
734417
}
734417
734417
/* 
734417
   This probe will fire when the return from a subroutine has been 
734417
   hit.  
734417
 */
734417
734417
probe perl.sub.return = process("LIBRARY_PATH").mark("sub__return")
734417
{
734417
734417
  sub = user_string($arg1)
734417
  filename = user_string($arg2)
734417
  lineno = $arg3
734417
  package = user_string($arg4)
734417
734417
}
734417
734417
/* 
734417
   This probe will fire when the Perl interperter changes state.
734417
 */
734417
734417
probe perl.phase.change = process("LIBRARY_PATH").mark("phase__change")
734417
{
734417
  newphase = user_string($arg1)
734417
  oldphase = user_string($arg2)
734417
  
734417
}