Update TODO.ptrace

1. siginfo_t accessors done
2. PTRACE_O_TRACEEXIT not applicable for NetBSD as we are tracing the whole
process at once, not per thread
3. PTRACE_O_TRACEEXEC implemented as SIGTRAP & TRAP_EXEC

Sponsored by <The NetBSD Foundation>
This commit is contained in:
kamil 2017-01-08 04:27:36 +00:00
parent 631c5ab455
commit 50603fe4db
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
$NetBSD: TODO.ptrace,v 1.9 2016/12/31 20:57:15 kamil Exp $
$NetBSD: TODO.ptrace,v 1.10 2017/01/08 04:27:36 kamil Exp $
Items we (currently) plan to finish in the ptrace(2) field:
@ -16,14 +16,12 @@ Items we (currently) plan to finish in the ptrace(2) field:
in all ports
- integrate all ptrace(2) features in gdb
- add ptrace(2) NetBSD support in LLDB
- add support for detecting equivalent events to PTRACE_O_TRACEEXEC,
PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXIT from Linux
- evaluate equivalent for PTRACE_O_TRACECLONE from Linux
- remove exect(3) - there is no usecase for it
- refactor pthread_dbg(3) to only query private pthread_t data, otherwise it
duplicates ptrace(2) interface and cannot cover all types of threads
- add ATF tests for SIGCHLD
- add ATF tests for PT_SYSCALL and PT_SYSCALLEMU
- add support to read and write siginfo_t from and to tracee
and of course: fix as many bugs as possible.