2013-07-31 00:48:37 -04:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package chroot
|
|
|
|
|
2013-07-31 00:50:59 -04:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"os"
|
|
|
|
)
|
2013-07-31 00:48:37 -04:00
|
|
|
|
|
|
|
func lockFile(*os.File) error {
|
|
|
|
return errors.New("not supported on Windows")
|
|
|
|
}
|
|
|
|
|
|
|
|
func unlockFile(f *os.File) error {
|
|
|
|
return nil
|
|
|
|
}
|