psutil.go 331 B

12345678910
  1. // Package sys provides system utilities for monitoring network connections and CPU usage.
  2. // Platform-specific implementations are provided for Windows, Linux, and macOS.
  3. package sys
  4. import (
  5. _ "unsafe"
  6. )
  7. //go:linkname HostProc github.com/shirou/gopsutil/v4/internal/common.HostProc
  8. func HostProc(combineWith ...string) string