mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-24 13:48:56 +08:00
9 lines
140 B
Go
9 lines
140 B
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
//go:build freebsd
|
|
|
|
package load
|
|
|
|
func getForkStat() (forkstat, error) {
|
|
return forkstat{}, nil
|
|
}
|