首页 > 其他分享 >ptrace

ptrace

时间:2023-04-14 18:59:10浏览次数:27  
标签:control process tracee system call ptrace

The ptrace() system call provides a means by which one process
(the "tracer") may observe and control the execution of another
process (the "tracee"), and examine and change the tracee's
memory and registers. It is primarily used to implement
breakpoint debugging and system call tracing.

标签:control,process,tracee,system,call,ptrace
From: https://www.cnblogs.com/Searchor/p/17319304.html

相关文章

  • linux下的ptrace函数
    Linux下的ptrace函数ptrace系统调用的用途ptrace系统调从名字上看是用于进程跟踪的,它提供了父进程可以观察和控制其子进程执行的能力,并允许父进程检查和替换子进程的内核......
  • PTRACE_SINGLESTEP相关
      https://blog.csdn.net/justin2009212407/article/details/104664025/https://blog.csdn.net/weixin_30667301/article/details/99779621https://blog.51cto.com/u......