From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/12992 Path: news.gmane.org!.POSTED!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH] sys/ptrace.h: add missing PTRACE_EVENT_STOP Date: Sun, 8 Jul 2018 15:15:06 +0200 Message-ID: <20180708131506.GC4418@port70.net> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1531055599 10055 195.159.176.226 (8 Jul 2018 13:13:19 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 8 Jul 2018 13:13:19 +0000 (UTC) User-Agent: Mutt/1.9.1 (2017-09-22) To: musl@lists.openwall.com Original-X-From: musl-return-13008-gllmg-musl=m.gmane.org@lists.openwall.com Sun Jul 08 15:13:15 2018 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1fc9V4-0002T6-GS for gllmg-musl@m.gmane.org; Sun, 08 Jul 2018 15:13:14 +0200 Original-Received: (qmail 8049 invoked by uid 550); 8 Jul 2018 13:15:20 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 8010 invoked from network); 8 Jul 2018 13:15:19 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline Xref: news.gmane.org gmane.linux.lib.musl.general:12992 Archived-At: new in linux v3.1 commit 3544d72a0e10d0aa1c1bd59ed77a53a59cdc12f7 changed in linux v3.4 commit 5cdf389aee90109e2e3d88085dea4dd5508a3be7 A tracer recieves this event in the waitpid status of a PTRACED_SEIZED process. --- include/sys/ptrace.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/sys/ptrace.h b/include/sys/ptrace.h index f501ff08..114185fd 100644 --- a/include/sys/ptrace.h +++ b/include/sys/ptrace.h @@ -84,6 +84,7 @@ extern "C" { #define PTRACE_EVENT_VFORK_DONE 5 #define PTRACE_EVENT_EXIT 6 #define PTRACE_EVENT_SECCOMP 7 +#define PTRACE_EVENT_STOP 128 #define PTRACE_PEEKSIGINFO_SHARED 1 -- 2.16.3