You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
318 B

// +build linux,!cgo
// +build go1.16
package psx // import "kernel.org/pub/linux/libs/security/libcap/psx"
import (
"syscall"
)
// Syscall3 and Syscall6 are aliases for syscall.AllThreadsSyscall*
// when compiled CGO_ENABLED=0.
var (
Syscall3 = syscall.AllThreadsSyscall
Syscall6 = syscall.AllThreadsSyscall6
)