mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-03-03 18:20:48 +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>
22 lines
617 B
Go
22 lines
617 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2022 The Ebitengine Authors
|
|
|
|
//go:build cgo && !(amd64 || arm64 || loong64)
|
|
|
|
package purego
|
|
|
|
import (
|
|
"github.com/ebitengine/purego/internal/cgo"
|
|
)
|
|
|
|
var syscall15XABI0 = uintptr(cgo.Syscall15XABI0)
|
|
|
|
//go:nosplit
|
|
func syscall_syscall15X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 uintptr) (r1, r2, err uintptr) {
|
|
return cgo.Syscall15X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15)
|
|
}
|
|
|
|
func NewCallback(_ any) uintptr {
|
|
panic("purego: NewCallback on Linux is only supported on amd64/arm64/loong64")
|
|
}
|