aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/terminal.py
diff options
context:
space:
mode:
authorJacob Kroon <jacob.kroon@gmail.com>2016-08-05 00:04:26 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-10 10:45:13 +0100
commit314937429d700204f296cfd1c0c5f215a2e5b939 (patch)
tree856080d9155e7829ca20d9dc9bdafd5b99ff51c6 /meta/lib/oe/terminal.py
parentc2991efb6f4894061ee99b62cef4024be51dcdbf (diff)
downloadopenembedded-core-contrib-314937429d700204f296cfd1c0c5f215a2e5b939.tar.gz
terminal: Add sleep in pid-monitor loop
Monitoring the process started by gnome-terminal was spinning in a busy-loop. Insert some sleeping so that we don't eat all the cpu. Signed-off-by: Jacob Kroon <jacob.kroon@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib/oe/terminal.py')
-rw-r--r--meta/lib/oe/terminal.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 6d6a29f983..3901ad3f26 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -76,9 +76,11 @@ class Gnome(XTerminal):
finally:
os.unlink(pidfile)
+ import time
while True:
try:
os.kill(pid, 0)
+ time.sleep(0.1)
except OSError:
return