Openembedded Bitbake Development
 help / color / mirror / Atom feed
* [PATCH] cooker.py: Allow parsing shutdown to be called more than once
@ 2012-03-11 14:34 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2012-03-11 14:34 UTC (permalink / raw)
  To: bitbake-devel

The parsing shutdown call can occur more than once. Currently
if this happens the code will hang. Add some code to prevent this.

[YOCTO #2039 partial]

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 lib/bb/cooker.py |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 451f1e9..78d8754 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1556,6 +1556,7 @@ class CookerParser(object):
         self.progress_chunk = max(self.toparse / 100, 1)
 
         self.start()
+        self.haveshutdown = False
 
     def start(self):
         self.results = self.load_cached()
@@ -1582,6 +1583,9 @@ class CookerParser(object):
     def shutdown(self, clean=True, force=False):
         if not self.toparse:
             return
+        if self.haveshutdown:
+            return
+        self.haveshutdown = True
 
         if clean:
             event = bb.event.ParseCompleted(self.cached, self.parsed,





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-03-11 14:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-11 14:34 [PATCH] cooker.py: Allow parsing shutdown to be called more than once Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox