2016-02-26 03:42:37 +00:00
|
|
|
// +build windows
|
|
|
|
|
2016-02-25 18:27:43 +00:00
|
|
|
package osutils
|
2016-02-26 03:42:37 +00: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
|
|
|
|
}
|