1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-26 12:10:59 +01:00

Recursive build error.... *2

This commit is contained in:
Wouter den Breejen 2007-10-12 10:05:17 +00:00
parent 65ba1f3008
commit 0ee803935e
12 changed files with 97 additions and 56 deletions

View file

@ -14,26 +14,26 @@ namespace nix {
typedef enum {
wopQuit = 0, //0
wopIsValidPath,
wopHasSubstitutes = 3,
wopIsValidPath, //1
wopHasSubstitutes = 3, //3
wopIsValidStatePath,
wopIsValidComponentOrStatePath,
wopQueryPathHash,
wopQueryStatePathDrv,
wopQueryStoreReferences,
wopQueryStateReferences,
wopQueryStoreReferrers,
wopQueryStateReferrers, //10
wopQueryStoreReferrers, //10
wopQueryStateReferrers,
wopAddToStore,
wopAddTextToStore,
wopBuildDerivations, //13
wopEnsurePath,
wopAddTextToStore, //13
wopBuildDerivations, //14
wopEnsurePath, //15
wopAddTempRoot,
wopAddIndirectRoot,
wopSyncWithGC,
wopFindRoots,
wopCollectGarbage,
wopExportPath, //20
wopCollectGarbage, //20
wopExportPath,
wopImportPath,
wopQueryDeriver,
wopQueryDerivers,
@ -42,16 +42,16 @@ typedef enum {
wopIsStateComponent,
wopStorePathRequisites,
wopSetStateRevisions,
wopQueryStateRevisions,
wopQueryAvailableStateRevisions, //30
wopQueryStateRevisions, //30
wopQueryAvailableStateRevisions,
wopCommitStatePath,
wopScanAndUpdateAllReferences,
wopGetSharedWith,
wopToNonSharedPathSet,
wopRevertToRevision,
wopShareState,
wopUnShareState, //37
wopSetOptions,
wopUnShareState,
wopSetOptions, //39
} WorkerOp;