diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-22T15·55+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-22T15·55+0000 |
commit | b33da599c5c1b06a32a3eeac58f95481d10f821d (patch) | |
tree | b3f33d5a7a86becd1485ae0de06d88b6eed7729c /src/libutil/util.hh | |
parent | 58d974336c733416756e5b396928602ea8ed8df2 (diff) |
* In the garbage collector, delete invalid paths before deleting
unreachable paths. This matters when using --max-freed etc.: unreachable paths could become reachable again, so it's nicer to keep them if there is "real" garbage to be deleted. Also, don't use readDirectory() but read the Nix store and delete invalid paths in parallel. This reduces GC latency on very large Nix stores.
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index f86290f31694..a1cf68e69d1c 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -223,6 +223,7 @@ public: ~AutoCloseDir(); void operator =(DIR * dir); operator DIR *(); + void close(); }; |