forked from lix-project/lix
5c38c863bd
Nix-env failed to call addPermRoot(), which is necessary to safely add a new root. So if nix-env started after and finished before the garbage collector, the user environment (plus all other new stuff) it built might be garbage collected, leading to a dangling symlink chain in ~/.nix-profile... * Be more explicit if we block on the GC lock ("waiting for the big garbage collector lock..."). * Don't loop trying to create a new generation. It's not necessary anymore since profiles are locked nowadays.
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
#ifndef __GC_H
|
|
#define __GC_H
|
|
|
|
#include "types.hh"
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
/* Garbage collector operation. */
|
|
typedef enum {
|
|
gcReturnRoots,
|
|
gcReturnLive,
|
|
gcReturnDead,
|
|
gcDeleteDead,
|
|
gcDeleteSpecific,
|
|
} GCAction;
|
|
|
|
/* If `action' is set to `gcReturnRoots', find and return the set of
|
|
roots for the garbage collector. These are the store paths
|
|
symlinked to in the `gcroots' directory. If `action' is
|
|
`gcReturnLive', return the set of paths reachable from (i.e. in the
|
|
closure of) the roots. If `action' is `gcReturnDead', return the
|
|
set of paths not reachable from the roots. If `action' is
|
|
`gcDeleteDead', actually delete the latter set. */
|
|
void collectGarbage(GCAction action, const PathSet & pathsToDelete,
|
|
bool ignoreLiveness, PathSet & result, unsigned long long & bytesFreed);
|
|
|
|
/* Register a temporary GC root. This root will automatically
|
|
disappear when this process exits. WARNING: this function should
|
|
not be called inside a BDB transaction, otherwise we can
|
|
deadlock. */
|
|
void addTempRoot(const Path & path);
|
|
|
|
/* Remove the temporary roots file for this process. Any temporary
|
|
root becomes garbage after this point unless it has been registered
|
|
as a (permanent) root. */
|
|
void removeTempRoots();
|
|
|
|
/* Register a permanent GC root. */
|
|
Path addPermRoot(const Path & storePath, const Path & gcRoot,
|
|
bool indirect, bool allowOutsideRootsDir = false);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif /* !__GC_H */
|