Module Name: src Committed By: martin Date: Tue Nov 25 15:07:37 UTC 2014
Modified Files: src/lib/libc/arch/x86_64/sys [netbsd-7]: ptrace.S Log Message: Pull up following revision(s) (requested by christos in ticket #263): lib/libc/arch/x86_64/sys/ptrace.S: revision 1.6 Fix ptrace %rcx corruption when pthread_errno() is used. Small example: #include <sys/types.h> #include <stdio.h> #include <sys/ptrace.h> int main(void) { ptrace(18, getpid(), NULL, 0xabcd); } The -lpthread cases pases 0 instead of 0xabcd To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.2.1 src/lib/libc/arch/x86_64/sys/ptrace.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.