|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/systemtap/tapset/ia64/ |
Upload File : |
# arch-specific requests of ptrace ___________________________
#
function _arch_ptrace_argstr(request, pid, addr, data)
{
if (request == %{ PTRACE_SINGLEBLOCK %})
return sprintf ("PTRACE_SINGLEBLOCK, %d, %s", pid, _signal_name (data))
if (request == %{ PTRACE_OLD_GETSIGINFO %})
// TODO: Retrieve *data in .return
return sprintf ("PTRACE_OLD_GETSIGINFO, %d, data=%p", pid, data)
if (request == %{ PTRACE_OLD_SETSIGINFO %})
// TODO: Retrieve *data here
return sprintf ("PTRACE_OLD_SETSIGINFO, %d, data=%p", pid, data)
if (request == %{ PTRACE_GETREGS %})
// TODO: Retrieve *data in .return
return sprintf ("PTRACE_GETREGS, %d", pid)
if (request == %{ PTRACE_SETREGS %})
// TODO: Retrieve *data here
return sprintf ("PTRACE_SETREGS, %d", pid)
if (request == %{ PTRACE_OLDSETOPTIONS %})
return sprintf ("PTRACE_OLDSETOPTIONS, %d, %s", pid, _ptrace_options_str (data))
}
function _ptrace_return_arch_prctl_addr:long(request:long, addr:long, data:long)
{
return 0
}