diff options
Diffstat (limited to 'bitbake/lib/bb/server/process.py')
-rw-r--r-- | bitbake/lib/bb/server/process.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index c9dfb4fa23..c3c1450a50 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
@@ -233,6 +233,9 @@ class BitBakeProcessServerConnection(BitBakeBaseServerConnection): | |||
233 | self.ui_channel.close() | 233 | self.ui_channel.close() |
234 | self.event_queue.close() | 234 | self.event_queue.close() |
235 | self.event_queue.setexit() | 235 | self.event_queue.setexit() |
236 | # XXX: Call explicity close in _writer to avoid | ||
237 | # fd leakage because isn't called on Queue.close() | ||
238 | self.event_queue._writer.close() | ||
236 | 239 | ||
237 | # Wrap Queue to provide API which isn't server implementation specific | 240 | # Wrap Queue to provide API which isn't server implementation specific |
238 | class ProcessEventQueue(multiprocessing.queues.Queue): | 241 | class ProcessEventQueue(multiprocessing.queues.Queue): |
@@ -264,7 +267,6 @@ class ProcessEventQueue(multiprocessing.queues.Queue): | |||
264 | sys.exit(1) | 267 | sys.exit(1) |
265 | return None | 268 | return None |
266 | 269 | ||
267 | |||
268 | class BitBakeServer(BitBakeBaseServer): | 270 | class BitBakeServer(BitBakeBaseServer): |
269 | def initServer(self, single_use=True): | 271 | def initServer(self, single_use=True): |
270 | # establish communication channels. We use bidirectional pipes for | 272 | # establish communication channels. We use bidirectional pipes for |