1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libstore/pathlocks.hh

25 lines
336 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;
public:
PathLocks(const PathSet & _paths);
~PathLocks();
};
#endif /* !__PATHLOCKS_H */