![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/containerd/cgroups/v3](https://github.com/containerd/cgroups) from 3.0.2 to 3.0.3. - [Release notes](https://github.com/containerd/cgroups/releases) - [Commits](https://github.com/containerd/cgroups/compare/v3.0.2...v3.0.3) --- updated-dependencies: - dependency-name: github.com/containerd/cgroups/v3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
501 B
Go
12 lines
501 B
Go
// Package unix re-exports Linux specific parts of golang.org/x/sys/unix.
|
|
//
|
|
// It avoids breaking compilation on other OS by providing stubs as follows:
|
|
// - Invoking a function always returns an error.
|
|
// - Errnos have distinct, non-zero values.
|
|
// - Constants have distinct but meaningless values.
|
|
// - Types use the same names for members, but may or may not follow the
|
|
// Linux layout.
|
|
package unix
|
|
|
|
// Note: please don't add any custom API to this package. Use internal/sys instead.
|