1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-27 12:41:00 +01:00

Replaced calls to drvFromPath with database calls.

This commit is contained in:
Wouter den Breejen 2007-10-19 16:43:37 +00:00
parent 1747d649c5
commit 588356c30a
11 changed files with 158 additions and 154 deletions

View file

@ -92,7 +92,7 @@ public:
Snapshots commitStatePath(const Path & statePath);
PathSet queryDerivers(const Path & storePath, const string & identifier, const string & user);
PathSet queryDerivers(const Path & storePath);
void scanAndUpdateAllReferences(const Path & statePath, const bool recursive);
@ -106,6 +106,8 @@ public:
void unShareState(const Path & path, const bool branch, const bool restoreOld);
Path lookupStatePath(const Path & storePath, const string & identifier, const string & user);
private:
AutoCloseFD fdSocket;
FdSink to;