diff options
Diffstat (limited to 'src/libstore/pathlocks.hh')
-rw-r--r-- | src/libstore/pathlocks.hh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/libstore/pathlocks.hh b/src/libstore/pathlocks.hh index 64d62f6ae899..57ca1584a6d6 100644 --- a/src/libstore/pathlocks.hh +++ b/src/libstore/pathlocks.hh @@ -12,10 +12,8 @@ namespace nix { because it doesn't exist. Any other error throws an exception. */ int openLockFile(const Path & path, bool create); -/* Delete an open lock file. Both must be called to be fully portable - between Unix and Windows. */ -void deleteLockFilePreClose(const Path & path, int fd); -void deleteLockFilePostClose(const Path & path); +/* Delete an open lock file. */ +void deleteLockFile(const Path & path, int fd); enum LockType { ltRead, ltWrite, ltNone }; |