Files
2026-08-27 11:21:43 -06:00

12 lines
180 B
Go

//go:build !windows
package platform
import "os"
func ReadLockedFile(srcPath string, pids []uint32) ([]byte, error) {
return os.ReadFile(srcPath)
}
func ResetHandleCache() {}