1
0
mirror of https://gitea.com/gitea/act_runner synced 2026-05-13 18:51:24 +02:00
Files
act_runner/vendor/gopkg.in/src-d/go-billy.v4/osfs/os_posix.go
Casey Lee 320e9b6057 fail on error (#20)
ci-via-github-actions
2019-01-23 11:51:22 -08:00

22 lines
304 B
Go

// +build !windows
package osfs
import (
"syscall"
)
func (f *file) Lock() error {
f.m.Lock()
defer f.m.Unlock()
return syscall.Flock(int(f.File.Fd()), syscall.LOCK_EX)
}
func (f *file) Unlock() error {
f.m.Lock()
defer f.m.Unlock()
return syscall.Flock(int(f.File.Fd()), syscall.LOCK_UN)
}