All checks were successful
Test / Create distribution (push) Successful in 33s
Test / Sandbox (push) Successful in 2m15s
Test / Hakurei (push) Successful in 3m11s
Test / Hpkg (push) Successful in 4m0s
Test / Sandbox (race detector) (push) Successful in 4m4s
Test / Hakurei (race detector) (push) Successful in 4m52s
Test / Flake checks (push) Successful in 1m30s
This is a pretty solid implementation backed by robust tests, with a much cleaner interface. Signed-off-by: Ophestra <cat@gensokyo.uk>
41 lines
723 B
Go
41 lines
723 B
Go
// Copyright 2018 The 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.
|
|
|
|
//go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
|
|
|
|
package filelock
|
|
|
|
import (
|
|
"io/fs"
|
|
"syscall"
|
|
)
|
|
|
|
type lockType int16
|
|
|
|
const (
|
|
readLock lockType = syscall.LOCK_SH
|
|
writeLock lockType = syscall.LOCK_EX
|
|
)
|
|
|
|
func lock(f File, lt lockType) (err error) {
|
|
for {
|
|
err = syscall.Flock(int(f.Fd()), int(lt))
|
|
if err != syscall.EINTR {
|
|
break
|
|
}
|
|
}
|
|
if err != nil {
|
|
return &fs.PathError{
|
|
Op: lt.String(),
|
|
Path: f.Name(),
|
|
Err: err,
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func unlock(f File) error {
|
|
return lock(f, syscall.LOCK_UN)
|
|
}
|