Module Name: src Committed By: kamil Date: Sun Jan 8 04:27:36 UTC 2017
Modified Files: src/doc: TODO.ptrace Log Message: 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> To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/doc/TODO.ptrace Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/doc/TODO.ptrace diff -u src/doc/TODO.ptrace:1.9 src/doc/TODO.ptrace:1.10 --- src/doc/TODO.ptrace:1.9 Sat Dec 31 20:57:15 2016 +++ src/doc/TODO.ptrace Sun Jan 8 04:27:36 2017 @@ -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 t 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.