2025-09-20 09:35:50 +02:00
|
|
|
// Package sys provides system utilities for monitoring network connections and CPU usage.
|
|
|
|
|
// Platform-specific implementations are provided for Windows, Linux, and macOS.
|
2023-02-09 22:48:06 +03:30
|
|
|
package sys
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
_ "unsafe"
|
|
|
|
|
)
|
|
|
|
|
|
2024-06-17 21:48:49 +02:00
|
|
|
//go:linkname HostProc github.com/shirou/gopsutil/v4/internal/common.HostProc
|
2023-02-09 22:48:06 +03:30
|
|
|
func HostProc(combineWith ...string) string
|