summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/server
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/server')
-rw-r--r--bitbake/lib/bb/server/process.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 5fca3508b1..1e2b8249a9 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -106,6 +106,7 @@ class ProcessServer(Process, BaseImplServer):
106 # the UI and communicated to us 106 # the UI and communicated to us
107 self.quitin.close() 107 self.quitin.close()
108 signal.signal(signal.SIGINT, signal.SIG_IGN) 108 signal.signal(signal.SIGINT, signal.SIG_IGN)
109 bb.utils.set_process_name("Cooker")
109 while not self.quit: 110 while not self.quit:
110 try: 111 try:
111 if self.command_channel.poll(): 112 if self.command_channel.poll():
@@ -212,6 +213,7 @@ class ProcessEventQueue(multiprocessing.queues.Queue):
212 def __init__(self, maxsize): 213 def __init__(self, maxsize):
213 multiprocessing.queues.Queue.__init__(self, maxsize) 214 multiprocessing.queues.Queue.__init__(self, maxsize)
214 self.exit = False 215 self.exit = False
216 bb.utils.set_process_name("ProcessEQueue")
215 217
216 def setexit(self): 218 def setexit(self):
217 self.exit = True 219 self.exit = True