Module Name: src
Committed By: kamil
Date: Sat Dec 31 20:57:15 UTC 2016
Modified Files:
src/doc: TODO.ptrace
Log Message:
Update TODO.ptrace
Mark exect(3) for removal, there is no use-case for it. exec() is already
monitored and emits SIGTRAP when traced.
Accessor for siginfo_t is not case for PT_IO -- it's not reading/writing
process space of other process, but shared kernel space.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 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.8 src/doc/TODO.ptrace:1.9
--- src/doc/TODO.ptrace:1.8 Mon Dec 26 08:43:55 2016
+++ src/doc/TODO.ptrace Sat Dec 31 20:57:15 2016
@@ -1,4 +1,4 @@
-$NetBSD: TODO.ptrace,v 1.8 2016/12/26 08:43:55 kamil Exp $
+$NetBSD: TODO.ptrace,v 1.9 2016/12/31 20:57:15 kamil Exp $
Items we (currently) plan to finish in the ptrace(2) field:
@@ -18,12 +18,12 @@ Items we (currently) plan to finish in t
- 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
- - exect(3) rethink or remove -- maybe PT_TRACE_ME + PTRACE_O_TRACEEXEC?
+ - 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 (reuse PT_IO?)
+ - add support to read and write siginfo_t from and to tracee
and of course: fix as many bugs as possible.