From 3af2d096dc622e29320af12417816ea2d4634fbc Mon Sep 17 00:00:00 2001 From: "D. Bohdan" Date: Sun, 8 Feb 2026 17:29:37 +0000 Subject: [PATCH] add support for riscv64 targets --- sys_linux_riscv64.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sys_linux_riscv64.go diff --git a/sys_linux_riscv64.go b/sys_linux_riscv64.go new file mode 100644 index 0000000..72c5520 --- /dev/null +++ b/sys_linux_riscv64.go @@ -0,0 +1,7 @@ +package keyctl + +const ( + syscall_keyctl uintptr = 219 + syscall_add_key uintptr = 217 + syscall_setfsgid uintptr = 152 +)