mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
a9b4c8171f
* update gopkg.in/src-d/go-git.v4 v4.13.0 * mod tidy * vendor
22 lines
306 B
Go
22 lines
306 B
Go
// +build !windows
|
|
|
|
package osfs
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func (f *file) Lock() error {
|
|
f.m.Lock()
|
|
defer f.m.Unlock()
|
|
|
|
return unix.Flock(int(f.File.Fd()), unix.LOCK_EX)
|
|
}
|
|
|
|
func (f *file) Unlock() error {
|
|
f.m.Lock()
|
|
defer f.m.Unlock()
|
|
|
|
return unix.Flock(int(f.File.Fd()), unix.LOCK_UN)
|
|
}
|