summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 8580f51693..054191b8c9 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1083,10 +1083,9 @@ class RunQueueExecute:
1083 sys.stdout.flush() 1083 sys.stdout.flush()
1084 sys.stderr.flush() 1084 sys.stderr.flush()
1085 try: 1085 try:
1086 pipeinfd, pipeoutfd = os.pipe() 1086 pipein, pipeout = os.pipe()
1087 pipein = os.fdopen(pipeinfd, 'rb', 4096) 1087 pipein = os.fdopen(pipein, 'rb', 4096)
1088 pipeout = os.fdopen(pipeoutfd, 'wb', 4096) 1088 pipeout = os.fdopen(pipeout, 'wb', 0)
1089
1090 pid = os.fork() 1089 pid = os.fork()
1091 except OSError as e: 1090 except OSError as e:
1092 bb.msg.fatal(bb.msg.domain.RunQueue, "fork failed: %d (%s)" % (e.errno, e.strerror)) 1091 bb.msg.fatal(bb.msg.domain.RunQueue, "fork failed: %d (%s)" % (e.errno, e.strerror))