Module Name: src
Committed By: kamil
Date: Thu Dec 15 12:42:38 UTC 2016
Modified Files:
src/doc: TODO.ptrace
Log Message:
Update TODO.ptrace with recent changes
Hardware assisted breakpoint/watchpoint API has been merged with current.
Add note about pthread_dbg(3) API needed to be refactored and limited to
querying POSIX thread private data fields.
Sponsored by <The NetBSD Foundation>
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 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.3 src/doc/TODO.ptrace:1.4
--- src/doc/TODO.ptrace:1.3 Thu Dec 15 07:47:08 2016
+++ src/doc/TODO.ptrace Thu Dec 15 12:42:38 2016
@@ -1,8 +1,7 @@
-$NetBSD: TODO.ptrace,v 1.3 2016/12/15 07:47:08 kamil Exp $
+$NetBSD: TODO.ptrace,v 1.4 2016/12/15 12:42:38 kamil Exp $
Items we (currently) plan to finish in the ptrace(2) field:
- - merge hardware watchpoint (breakpoint) support with HEAD
- verify ppid of core dump generated with PT_DUMPCORE
it must point to the real parent, not tracer
- adapt OpenBSD regress test (regress/sys/ptrace/ptrace.c) for the ATF context
@@ -21,7 +20,8 @@ Items we (currently) plan to finish in t
- add support for detecting equivalent events to PTRACE_O_TRACEEXEC,
PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXIT from Linux
- exect(3) rething or remove -- maybe PT_TRACE_ME + PTRACE_O_TRACEEXEC?
-
+ - refactor pthread_dbg(3) to only query private pthread_t data, otherwise it
+ duplicates ptrace(2) interface and cannot cover all types of threads
and of course: fix as many bugs as possible.