[oe-commits] [bitbake] branch master updated: runqueue: Use tid instead of taskid in find_chains()

git at git.openembedded.org git at git.openembedded.org
Thu Jun 16 21:46:53 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

The following commit(s) were added to refs/heads/master by this push:
       new  29a34ae   runqueue: Use tid instead of taskid in find_chains()
29a34ae is described below

commit 29a34ae8f5306d2779bcc761c52f1f9d13a0c0c5
Author: George McCollister <george.mccollister at gmail.com>
AuthorDate: Thu Jun 16 15:22:03 2016 -0500

    runqueue: Use tid instead of taskid in find_chains()
    
    In 2c88afb6 find_chains()'s taskid argument was renamed to tid but
    taskid is still used as key to explored_deps dictionary. Use tid instead
    of taskid.
    
    Signed-off-by: George McCollister <george.mccollister at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index b32e8e6..c9b6b84 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -347,7 +347,7 @@ class RunQueueData:
                     if dep not in total_deps:
                         total_deps.append(dep)
 
-            explored_deps[taskid] = total_deps
+            explored_deps[tid] = total_deps
 
         for task in tasks:
             find_chains(task, [])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list