guix/src/libstore/pathlocks.hh

27 lines
398 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:
list<int> fds;
Paths paths;
2003-11-21 16:05:19 +00:00
bool deletePaths;
public:
PathLocks(const PathSet & _paths);
~PathLocks();
2003-11-21 16:05:19 +00:00
void setDeletion(bool deletePaths);
};
#endif /* !__PATHLOCKS_H */