59682e6188
lock they are waiting on has become stale (we do this by writing a meaningless token to the unlinked file).
28 lines
480 B
C++
28 lines
480 B
C++
#ifndef __PATHLOCKS_H
|
|
#define __PATHLOCKS_H
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
typedef enum LockType { ltRead, ltWrite, ltNone };
|
|
|
|
bool lockFile(int fd, LockType lockType, bool wait);
|
|
|
|
|
|
class PathLocks
|
|
{
|
|
private:
|
|
typedef pair<int, Path> FDPair;
|
|
list<FDPair> fds;
|
|
bool deletePaths;
|
|
|
|
public:
|
|
PathLocks();
|
|
PathLocks(const PathSet & paths);
|
|
void lockPaths(const PathSet & _paths);
|
|
~PathLocks();
|
|
void setDeletion(bool deletePaths);
|
|
};
|
|
|
|
|
|
#endif /* !__PATHLOCKS_H */
|