diff options
Diffstat (limited to 'src/globals.hh')
-rw-r--r-- | src/globals.hh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/globals.hh b/src/globals.hh index 0ea2fca092c3..910e47e01cdd 100644 --- a/src/globals.hh +++ b/src/globals.hh @@ -33,6 +33,13 @@ extern TableId dbValidPaths; extern TableId dbSuccessors; +/* dbSuccessorsRev :: Path -> [Path] + + The reverse mapping of dbSuccessors. +*/ +extern TableId dbSuccessorsRev; + + /* dbSubstitutes :: Path -> [Path] Each pair $(p, [ps])$ tells Nix that it can realise any of the @@ -47,6 +54,13 @@ extern TableId dbSuccessors; extern TableId dbSubstitutes; +/* dbSubstitutesRev :: Path -> [Path] + + The reverse mapping of dbSubstitutes. +*/ +extern TableId dbSubstitutesRev; + + /* Path names. */ /* nixStore is the directory where we generally store atomic and |