From 68569416e7d3f26e1de8b87e7300ce2b4396d274 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 13 Jan 2025 03:46:18 +0900 Subject: [PATCH] README.md: typo Signed-off-by: Akihiro Suda --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b149f7d..963316b 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Global Flags: ``` ### How it works -- [`SECCOMP_RET_TRAP`](https://man7.org/linux/man-pages/man2/seccomp.2.html) is used for conditionally +- [`SECCOMP_RET_TRACE`](https://man7.org/linux/man-pages/man2/seccomp.2.html) is used for conditionally allowing trusted Go modules to execute the syscall. `SECCOMP_RET_USER_NOTIF` is not used because it cannot access all the CPU registers, due to the [lack of `struct pt_regs` in `struct seccomp_data`](https://github.com/torvalds/linux/blob/v6.12/kernel/seccomp.c#L242-L266).