mirror of
https://github.com/cheat/cheat.git
synced 2024-11-24 06:51:36 +01:00
95a4e31b6c
Upgrade all dependencies to newest versions.
39 lines
666 B
Go
39 lines
666 B
Go
//go:build !plan9 && !windows && !js
|
|
// +build !plan9,!windows,!js
|
|
|
|
package osfs
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
|
|
"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)
|
|
}
|
|
|
|
func rename(from, to string) error {
|
|
return os.Rename(from, to)
|
|
}
|
|
|
|
// umask sets umask to a new value, and returns a func which allows the
|
|
// caller to reset it back to what it was originally.
|
|
func umask(new int) func() {
|
|
old := syscall.Umask(new)
|
|
return func() {
|
|
syscall.Umask(old)
|
|
}
|
|
}
|