mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-05-11 11:48:36 +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>
27 lines
644 B
ArmAsm
27 lines
644 B
ArmAsm
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2022 The Ebitengine Authors
|
|
|
|
//go:build darwin || !cgo && (freebsd || linux || netbsd) && !faketime
|
|
|
|
#include "textflag.h"
|
|
|
|
// func dlopen(path *byte, mode int) (ret uintptr)
|
|
TEXT dlopen(SB), NOSPLIT|NOFRAME, $0-0
|
|
JMP purego_dlopen(SB)
|
|
RET
|
|
|
|
// func dlsym(handle uintptr, symbol *byte) (ret uintptr)
|
|
TEXT dlsym(SB), NOSPLIT|NOFRAME, $0-0
|
|
JMP purego_dlsym(SB)
|
|
RET
|
|
|
|
// func dlerror() (ret *byte)
|
|
TEXT dlerror(SB), NOSPLIT|NOFRAME, $0-0
|
|
JMP purego_dlerror(SB)
|
|
RET
|
|
|
|
// func dlclose(handle uintptr) (ret int)
|
|
TEXT dlclose(SB), NOSPLIT|NOFRAME, $0-0
|
|
JMP purego_dlclose(SB)
|
|
RET
|