diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-05T01·31+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-05T01·31+0000 |
commit | 29cf434a35d82529f56c085c9cd50858c148d086 (patch) | |
tree | ed6df2ab56312989b4e8e50ba5b246b9d5641396 /src/libstore/worker-protocol.hh | |
parent | 8623256f483f77e090e689ae332165a530a489a5 (diff) |
* The determination of the root set should be made by the privileged
process, so forward the operation. * Spam the user about GC misconfigurations (NIX-71). * findRoots: skip all roots that are unreadable - the warnings with which we spam the user should be enough.
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r-- | src/libstore/worker-protocol.hh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index ff47fdd67c1a..bb5d9d7b3481 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -2,6 +2,9 @@ #define __WORKER_PROTOCOL_H +namespace nix { + + #define WORKER_MAGIC_1 0x6e697864 #define WORKER_MAGIC_2 0x6478696e @@ -21,6 +24,7 @@ typedef enum { wopAddTempRoot, wopAddIndirectRoot, wopSyncWithGC, + wopFindRoots, } WorkerOp; @@ -34,4 +38,11 @@ typedef enum { #define DEFAULT_SOCKET_PATH "/daemon.socket" +Path readStorePath(Source & from); +PathSet readStorePaths(Source & from); + + +} + + #endif /* !__WORKER_PROTOCOL_H */ |