nix-super/src/libstore/pathlocks.hh

29 lines
480 B
C++
Raw Normal View History

#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;
2003-11-21 18:05:19 +02:00
bool deletePaths;
public:
PathLocks();
PathLocks(const PathSet & paths);
void lockPaths(const PathSet & _paths);
~PathLocks();
2003-11-21 18:05:19 +02:00
void setDeletion(bool deletePaths);
};
#endif /* !__PATHLOCKS_H */