go4.orggo4.org/lock Index | Files

package lock

import "go4.org/lock"

Package lock is a file locking library.

Index

Functions

func Lock

func Lock(name string) (io.Closer, error)

Lock locks the given file, creating the file if necessary. If the file already exists, it must have zero size or an error is returned. The lock is an exclusive lock (a write lock), but locked files should neither be read from nor written to. Such files should have zero size and only exist to co-ordinate ownership across processes.

A nil Closer is returned if an error occurred. Otherwise, close that Closer to release the lock.

On Linux, FreeBSD and OSX, a lock has the same semantics as fcntl(2)'s advisory locks. In particular, closing any other file descriptor for the same file will release the lock prematurely.

Attempting to lock a file that is already locked by the current process has undefined behavior.

On other operating systems, lock will fallback to using the presence and content of a file named name + '.lock' to implement locking behavior.

Source Files

lock.go lock_sigzero.go lock_unix.go

Version
v0.0.0-20230225012048-214862532bf5 (latest)
Published
Feb 25, 2023
Platform
linux/amd64
Imports
8 packages
Last checked
1 month ago

Tools for package owners.