github.com/ergo-services/ergo@v1.999.224/lib/osdep/windows.go (about) 1 //go:build windows 2 // +build windows 3 4 package osdep 5 6 // ResourceUsage 7 func ResourceUsage() (int64, int64) { 8 // FIXME Windows doesn't support syscall.Rusage. There should be another 9 // way to get this kind of data from the OS 10 return 0, 0 11 }