diff options
author | eldritch horrors <pennae@lix.systems> | 2024-08-02 17:00:57 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-08-08 12:02:17 +0000 |
commit | 4c3010a1be60937ed6287ea613de403c36ce1396 (patch) | |
tree | 651559f055822b912849d25cbcc3b4008964ae0b /src/libstore/build/worker.hh | |
parent | 3ecb46e3e79e4fb69d9d973bbf83437f165cb3e8 (diff) |
libstore: make Worker::wakeUp private
Change-Id: Iffa55272fe6ef4adaf3e9d4d25e5339792c2e460
Diffstat (limited to 'src/libstore/build/worker.hh')
-rw-r--r-- | src/libstore/build/worker.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstore/build/worker.hh b/src/libstore/build/worker.hh index 3644039fb..20aa34e74 100644 --- a/src/libstore/build/worker.hh +++ b/src/libstore/build/worker.hh @@ -122,6 +122,11 @@ private: */ void waitForAWhile(GoalPtr goal); + /** + * Wake up a goal (i.e., there is something for it to do). + */ + void wakeUp(GoalPtr goal); + public: const Activity act; @@ -220,11 +225,6 @@ public: void removeGoal(GoalPtr goal); /** - * Wake up a goal (i.e., there is something for it to do). - */ - void wakeUp(GoalPtr goal); - - /** * Return the number of local build processes currently running (but not * remote builds via the build hook). */ |