github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/utils/filelock/flock_windows.go (about) 1 // Copyright 2014 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 // +build windows 5 6 package filelock 7 8 import "fmt" 9 10 func flockLock(fd int) (err error) { 11 return fmt.Errorf("not implemented") 12 } 13 14 func flockUnlock(fd int) (err error) { 15 return fmt.Errorf("not implemented") 16 }