1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 16:29:36 +01:00
nix/src/libstore/windows/pathlocks.cc
John Ericson 2248a3f545 Create no-op Window pathlocks implementation
This keeps the call sites simple, eventually this should be filled in.
2024-04-17 11:48:14 -04:00

16 lines
260 B
C++

#include "logging.hh"
#include "pathlocks.hh"
namespace nix {
bool PathLocks::lockPaths(const PathSet & _paths, const std::string & waitMsg, bool wait)
{
return true;
}
void PathLocks::unlock()
{
warn("PathLocks::unlock: not yet implemented");
}
}