const syscall.ENOSYS

9 uses

	syscall (current package)
		syscall_linux.go#L167: 		if err := faccessat2(dirfd, path, mode, flags); err != ENOSYS && err != EPERM {
		syscall_unix.go#L127: 		return e == ENOSYS || e == ENOTSUP || e == EOPNOTSUPP
		zerrors_linux_amd64.go#L1272: 	ENOSYS          = Errno(0x26)

	internal/poll
		copy_file_range_linux.go#L44: 		case syscall.ENOSYS:
		fd_unix.go#L658: 		case syscall.EINVAL, syscall.ENOSYS:
		sock_cloexec.go#L26: 	case syscall.ENOSYS: // syscall missing

	internal/syscall/unix
		getrandom.go#L26: 		return 0, syscall.ENOSYS
		getrandom.go#L33: 		if errno == syscall.ENOSYS {

	os
		wait_waitid.go#L42: 		if e == syscall.ENOSYS {