diff options
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index eb5fcf83360b..5166c04e5319 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -73,6 +73,7 @@ private: Sync<State, std::recursive_mutex> _state; + const Path dbDir; const Path linksDir; const Path reservedPath; const Path schemaPath; @@ -146,6 +147,15 @@ public: void syncWithGC() override; +private: + + typedef std::shared_ptr<AutoCloseFD> FDPtr; + typedef list<FDPtr> FDs; + + void readTempRoots(PathSet & tempRoots, FDs & fds); + +public: + Roots findRoots() override; void collectGarbage(const GCOptions & options, GCResults & results) override; @@ -179,8 +189,6 @@ public: void addSignatures(const Path & storePath, const StringSet & sigs) override; - static bool haveWriteAccess(); - private: int getSchema(); |