diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-14T15·33+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-14T15·33+0000 |
commit | c190f051ac34b2df51402bf593150de97f491d86 (patch) | |
tree | b08f3b05b2f39e1d1c48ce833711516671dc568a /src/pathlocks.hh | |
parent | 1d61e473c88568fae7ef5edebc77acd53e4126f9 (diff) |
* Automatically recover the database in case of a crash.
Diffstat (limited to 'src/pathlocks.hh')
-rw-r--r-- | src/pathlocks.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pathlocks.hh b/src/pathlocks.hh index 6c36b9b1d17f..ce61386d6df0 100644 --- a/src/pathlocks.hh +++ b/src/pathlocks.hh @@ -4,6 +4,11 @@ #include "util.hh" +typedef enum LockType { ltRead, ltWrite, ltNone }; + +bool lockFile(int fd, LockType lockType, bool wait); + + class PathLocks { private: |