All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] runqueue: Use tid instead of taskid in find_chains()
@ 2016-06-16 20:22 George McCollister
  0 siblings, 0 replies; only message in thread
From: George McCollister @ 2016-06-16 20:22 UTC (permalink / raw)
  To: bitbake-devel

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@gmail.com>
---
 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, [])
-- 
2.8.0



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

only message in thread, other threads:[~2016-06-16 20:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-16 20:22 [PATCH] runqueue: Use tid instead of taskid in find_chains() George McCollister

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.