Linux(编程):多进程同步-文件锁_进程间文件锁-CSDN博客
除了fcntl方式的文件锁,linux还提供了另一个api flock,用于完成文件锁。
下面的代码对flock进行了封装:
//file_lock.h
#ifndef FILE_LOCK_H
#define FILE_LOCK_H#include <sys/file.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string>
using std::string;enum class FILE_LOCK_RES