1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-02 19:44:13 +00:00
Beego/vendor/github.com/siddontang/go/filelock/file_lock_generic.go
2018-11-09 12:37:28 +08:00

18 lines
459 B
Go

// Copyright 2012 The LevelDB-Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows
package filelock
import (
"fmt"
"io"
"runtime"
)
func Lock(name string) (io.Closer, error) {
return nil, fmt.Errorf("leveldb/db: file locking is not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
}