EdgexAgent/device-ble-go/vendor/github.com/tklauser/go-sysconf
2025-07-10 20:40:32 +08:00
..
.cirrus.yml 添加gitignore 2025-07-10 20:40:32 +08:00
.gitignore 添加gitignore 2025-07-10 20:40:32 +08:00
LICENSE 添加gitignore 2025-07-10 20:40:32 +08:00
README.md 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_bsd.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_darwin.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_dragonfly.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_freebsd.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_generic.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_linux.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_netbsd.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_openbsd.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_posix.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_solaris.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf_unsupported.go 添加gitignore 2025-07-10 20:40:32 +08:00
sysconf.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_defs_darwin.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_defs_dragonfly.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_defs_freebsd.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_defs_linux.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_defs_netbsd.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_defs_openbsd.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_defs_solaris.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_freebsd_386.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_freebsd_amd64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_freebsd_arm64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_freebsd_arm.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_freebsd_riscv64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_386.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_amd64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_arm64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_arm.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_loong64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_mips64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_mips64le.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_mips.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_mipsle.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_ppc64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_ppc64le.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_riscv64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_linux_s390x.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_netbsd_386.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_netbsd_amd64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_netbsd_arm64.go 添加gitignore 2025-07-10 20:40:32 +08:00
zsysconf_values_netbsd_arm.go 添加gitignore 2025-07-10 20:40:32 +08:00

go-sysconf

Go Reference GitHub Action Status

sysconf for Go, without using cgo or external binaries (e.g. getconf).

Supported operating systems: Linux, macOS, DragonflyBSD, FreeBSD, NetBSD, OpenBSD, Solaris/Illumos.

All POSIX.1 and POSIX.2 variables are supported, see References for a complete list.

Additionally, the following non-standard variables are supported on some operating systems:

Variable Supported on
SC_PHYS_PAGES Linux, macOS, FreeBSD, NetBSD, OpenBSD, Solaris/Illumos
SC_AVPHYS_PAGES Linux, OpenBSD, Solaris/Illumos
SC_NPROCESSORS_CONF Linux, macOS, FreeBSD, NetBSD, OpenBSD, Solaris/Illumos
SC_NPROCESSORS_ONLN Linux, macOS, FreeBSD, NetBSD, OpenBSD, Solaris/Illumos
SC_UIO_MAXIOV Linux

Usage

package main

import (
	"fmt"

	"github.com/tklauser/go-sysconf"
)

func main() {
	// get clock ticks, this will return the same as C.sysconf(C._SC_CLK_TCK)
	clktck, err := sysconf.Sysconf(sysconf.SC_CLK_TCK)
	if err == nil {
		fmt.Printf("SC_CLK_TCK: %v\n", clktck)
	}
}

References