Unix IPC: Locking Files
25 Nov 2012Locking a file helps assure your program that no other processes can tamper with it or a region of it.
This snippet will show you how to lock and unlock a file.struct flock fl; int fd;
Locking a file helps assure your program that no other processes can tamper with it or a region of it.
This snippet will show you how to lock and unlock a file.struct flock fl; int fd;