2016-02-25 19:42:37 -08:00
|
|
|
// +build windows
|
|
|
|
|
2016-02-25 10:27:43 -08:00
|
|
|
package osutils
|
2016-02-25 19:42:37 -08:00
|
|
|
|
|
|
|
// GetOpenFds returns the number of open fds for the process provided by pid
|
|
|
|
// Not supported on Windows (same as for docker daemon)
|
|
|
|
func GetOpenFds(pid int) (int, error) {
|
|
|
|
return -1, nil
|
|
|
|
}
|