mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-28 06:52:34 +00:00
879bb9ffd5
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.25.0 to 0.26.0. - [Commits](https://github.com/golang/sys/compare/v0.25.0...v0.26.0) --- updated-dependencies: - dependency-name: golang.org/x/sys dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
345 B
Go
14 lines
345 B
Go
// Copyright 2024 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build linux && go1.24
|
|
|
|
package unix
|
|
|
|
import _ "unsafe"
|
|
|
|
//go:linkname vgetrandom runtime.vgetrandom
|
|
//go:noescape
|
|
func vgetrandom(p []byte, flags uint32) (ret int, supported bool)
|