aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/thread-pool.cc
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-04 07:40:17 +0100
committereldritch horrors <pennae@lix.systems>2024-03-04 07:40:17 +0100
commit8f5d0d4c05f8f3d1553b0527af5306010f0ada44 (patch)
treef97bc54665f7dee13cef8e18deb4814f8669731e /src/libutil/thread-pool.cc
parent137673de5610ce20d03a0a79e242eb64a5c0f615 (diff)
Merge pull request #9687 from edolstra/withFramedSink-ctrl-c-hang
withFramedSink(): Receive interrupts on the stderr thread (cherry picked from commit 965cfe96886c988c3aa94bfc7fefdd37325f4536) Change-Id: I8320a96957c01ec0e3450d1b3ae38a3baff78d49
Diffstat (limited to 'src/libutil/thread-pool.cc')
-rw-r--r--src/libutil/thread-pool.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/thread-pool.cc b/src/libutil/thread-pool.cc
index dc4067f1b..6513234ba 100644
--- a/src/libutil/thread-pool.cc
+++ b/src/libutil/thread-pool.cc
@@ -77,6 +77,8 @@ void ThreadPool::process()
void ThreadPool::doWork(bool mainThread)
{
+ ReceiveInterrupts receiveInterrupts;
+
if (!mainThread)
interruptCheck = [&]() { return (bool) quit; };