bd3b44be3e
The fsync package provides Mutex and RWMutex types which aim to provide the same semantics as their namesakes in the sync package, extending that locking across processes by using file locks and randomly-generated identifiers to allow processes to determine whether or not they were the last to modify a resource that's protected by the lock. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com> (github: nalind) |
||
---|---|---|
.. | ||
fsync_shared.go | ||
fsync_test.go | ||
fsync_unix.go | ||
fsync_unsupported.go | ||
README.md |
The fsync package provides a workalike for the sync
package's RWMutex
,
which uses a file lock on a specified file to coordinate its effects across
multiple cooperating processes.