const syscall.ENOSYS

11 uses

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

	internal/poll
		copy_file_range_linux.go#L37: 		case syscall.ENOSYS:
		fd_unix.go#L667: 		case syscall.EINVAL, syscall.ENOSYS:
		sendfile_linux.go#L56: 	handled = written != 0 || (err != syscall.ENOSYS && err != syscall.EINVAL)

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

	os
		pidfd_linux.go#L71: 		return 0, syscall.ENOSYS
		wait_waitid.go#L42: 		if e == syscall.ENOSYS {