siddontang.golib/filelock/file_lock_generic.go

18 lines
459 B
Go
Raw Permalink Normal View History

2014-09-04 21:42:27 +08:00
// 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.
2014-10-22 09:37:15 +08:00
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows
2014-09-04 21:42:27 +08:00
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)
}