Final bit of compiling on Windows

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2016-02-25 19:42:37 -08:00
parent cc6ba36498
commit dd192f4cd9
7 changed files with 361 additions and 269 deletions

View file

@ -1 +1,9 @@
// +build windows
package osutils
// 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
}