From a6b7fe2ace19826871ca7758782dfe0382b497b1 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 3 Apr 2023 07:45:08 +0200 Subject: sys/linux: add descriptions of PTRACE_SETSIGMASK --- sys/linux/sys.txt | 2 ++ sys/linux/sys.txt.const | 2 ++ 2 files changed, 4 insertions(+) (limited to 'sys/linux') diff --git a/sys/linux/sys.txt b/sys/linux/sys.txt index 778566eb4..fbf758406 100644 --- a/sys/linux/sys.txt +++ b/sys/linux/sys.txt @@ -266,6 +266,8 @@ ptrace$getenv(req const[PTRACE_GETEVENTMSG], pid pid, ignored intptr, data ptr[o ptrace$cont(req flags[ptrace_req_cont], pid pid, ignored intptr, data intptr) (breaks_returns) ptrace$PTRACE_SECCOMP_GET_FILTER(req const[PTRACE_SECCOMP_GET_FILTER], pid pid, addr intptr, data ptr[out, array[int8]]) (breaks_returns) ptrace$PTRACE_SECCOMP_GET_METADATA(req const[PTRACE_SECCOMP_GET_METADATA], pid pid, addr len[data], data ptr[in, seccomp_metadata]) (breaks_returns) +ptrace$PTRACE_SETSIGMASK(req const[PTRACE_SETSIGMASK], pid pid, size bytesize[data], data ptr[in, sigset_t]) (breaks_returns) +ptrace$PTRACE_GETSIGMASK(req const[PTRACE_GETSIGMASK], pid pid, size bytesize[data], data ptr[out, sigset_t]) (breaks_returns) ptrace$ARCH_GET_FS(req const[PTRACE_ARCH_PRCTL], pid pid, arg ptr[out, intptr], code const[ARCH_GET_FS]) (breaks_returns) ptrace$ARCH_GET_GS(req const[PTRACE_ARCH_PRCTL], pid pid, arg ptr[out, intptr], code const[ARCH_GET_GS]) (breaks_returns) ptrace$ARCH_SET_GS(req const[PTRACE_ARCH_PRCTL], pid pid, arg ptr[out, intptr], code const[ARCH_SET_GS]) (breaks_returns) diff --git a/sys/linux/sys.txt.const b/sys/linux/sys.txt.const index c458cabd3..72d600f98 100644 --- a/sys/linux/sys.txt.const +++ b/sys/linux/sys.txt.const @@ -402,6 +402,7 @@ PTRACE_GETFPREGS = 14, arm64:riscv64:s390x:??? PTRACE_GETREGS = 12, arm64:riscv64:s390x:??? PTRACE_GETREGSET = 16900 PTRACE_GETSIGINFO = 16898 +PTRACE_GETSIGMASK = 16906 PTRACE_INTERRUPT = 16903 PTRACE_KILL = 8 PTRACE_LISTEN = 16904 @@ -429,6 +430,7 @@ PTRACE_SETOPTIONS = 16896 PTRACE_SETREGS = 13, arm64:riscv64:s390x:??? PTRACE_SETREGSET = 16901 PTRACE_SETSIGINFO = 16899 +PTRACE_SETSIGMASK = 16907 PTRACE_SINGLESTEP = 9 PTRACE_SYSCALL = 24 PTRACE_SYSEMU = 31, arm:mips64le:???, ppc64le:29 -- cgit mrf-deployment