mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-08-28 01:47:20 +00:00
Bumps [github.com/shirou/gopsutil/v4](https://github.com/shirou/gopsutil) from 4.25.8 to 4.25.9. - [Release notes](https://github.com/shirou/gopsutil/releases) - [Commits](https://github.com/shirou/gopsutil/compare/v4.25.8...v4.25.9) --- updated-dependencies: - dependency-name: github.com/shirou/gopsutil/v4 dependency-version: 4.25.9 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
709 B
Go
20 lines
709 B
Go
// Copyright 2010 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 !cgo && (darwin || freebsd || linux || netbsd)
|
|
|
|
// The runtime package contains an uninitialized definition
|
|
// for runtime·iscgo. Override it to tell the runtime we're here.
|
|
// There are various function pointers that should be set too,
|
|
// but those depend on dynamic linker magic to get initialized
|
|
// correctly, and sometimes they break. This variable is a
|
|
// backup: it depends only on old C style static linking rules.
|
|
|
|
package fakecgo
|
|
|
|
import _ "unsafe" // for go:linkname
|
|
|
|
//go:linkname _iscgo runtime.iscgo
|
|
var _iscgo bool = true
|