From: Szabolcs Nagy <nsz@port70.net>
Date: Sun, 8 Jul 2018 13:15:06 +0000 (+0200)
Subject: sys/ptrace.h: add missing PTRACE_EVENT_STOP
X-Git-Tag: v1.1.20~40
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ea32a8282b743bb1637b9e1da5f76dcd472a704;p=musl

sys/ptrace.h: add missing PTRACE_EVENT_STOP

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.
---

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