mirror of
https://git.yoctoproject.org/poky
synced 2026-04-14 17:02:22 +02:00
bitbake/server/process: Implement getEvent()
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -229,6 +229,13 @@ class ProcessEventQueue(multiprocessing.queues.Queue):
|
||||
except Empty:
|
||||
return None
|
||||
|
||||
def getEvent(self):
|
||||
try:
|
||||
return self.get(False)
|
||||
except Empty:
|
||||
return None
|
||||
|
||||
|
||||
class BitBakeServer(object):
|
||||
def initServer(self):
|
||||
# establish communication channels. We use bidirectional pipes for
|
||||
|
||||
Reference in New Issue
Block a user