diff options
Diffstat (limited to 'src/libstore/build/worker.hh')
-rw-r--r-- | src/libstore/build/worker.hh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libstore/build/worker.hh b/src/libstore/build/worker.hh index 406bf205d..7abb966f9 100644 --- a/src/libstore/build/worker.hh +++ b/src/libstore/build/worker.hh @@ -157,6 +157,13 @@ private: */ void removeGoal(GoalPtr goal); + /** + * Registers a running child process. `inBuildSlot` means that + * the process counts towards the jobs limit. + */ + void childStarted(GoalPtr goal, const std::set<int> & fds, + bool inBuildSlot); + public: const Activity act; @@ -229,13 +236,6 @@ public: GoalPtr makeGoal(const DerivedPath & req, BuildMode buildMode = bmNormal); /** - * Registers a running child process. `inBuildSlot` means that - * the process counts towards the jobs limit. - */ - void childStarted(GoalPtr goal, const std::set<int> & fds, - bool inBuildSlot); - - /** * Unregisters a running child process. */ void childTerminated(Goal * goal); |