github.com/mhilton/juju-juju@v0.0.0-20150901100907-a94dd2c73455/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  }