diff options
author | eldritch horrors <pennae@lix.systems> | 2024-07-25 18:05:42 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-07-30 15:37:27 +0000 |
commit | d9af753a7f5f6c7e52582b596b78c9b870572cb6 (patch) | |
tree | 2c315de707150996bf72049be7fe7a3262a9f248 /src/libstore/build/drv-output-substitution-goal.cc | |
parent | 6c0dcd12208cf46fcfb5e0037fafa8833ec62326 (diff) |
libstore: always wake up goals on EOF
all goals do this. it makes no sense to not notify a goal of EOF
conditions because this is the universal signal for "child done"
Change-Id: Ic3980de312547e616739c57c6248a8e81308b5ee
Diffstat (limited to 'src/libstore/build/drv-output-substitution-goal.cc')
-rw-r--r-- | src/libstore/build/drv-output-substitution-goal.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libstore/build/drv-output-substitution-goal.cc b/src/libstore/build/drv-output-substitution-goal.cc index 69598472c..5e83d769c 100644 --- a/src/libstore/build/drv-output-substitution-goal.cc +++ b/src/libstore/build/drv-output-substitution-goal.cc @@ -162,10 +162,5 @@ void DrvOutputSubstitutionGoal::work() (this->*state)(); } -void DrvOutputSubstitutionGoal::handleEOF(int fd) -{ - worker.wakeUp(shared_from_this()); -} - } |