github.com/altoros/juju-vmware@v0.0.0-20150312064031-f19ae857ccca/container/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 container
     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  }