]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/syscall/syscall_linux_mipsx.go
syscall: add support to get pidfd from ForkExec on Linux
[gostls13.git] / src / syscall / syscall_linux_mipsx.go
index d8d5044b81aa632385e9648d4679ba7df66efc56..168148ab244c8d3f19f26e41f1d5e05faa3eb615 100644 (file)
@@ -9,9 +9,10 @@ package syscall
 import "unsafe"
 
 const (
-       _SYS_setgroups  = SYS_SETGROUPS
-       _SYS_clone3     = 4435
-       _SYS_faccessat2 = 4439
+       _SYS_setgroups         = SYS_SETGROUPS
+       _SYS_clone3            = 4435
+       _SYS_faccessat2        = 4439
+       _SYS_pidfd_send_signal = 4424
 )
 
 func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno)