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.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 3d54c2b88a..5b7dab8d79 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -46,6 +46,12 @@ def split_tid(tid):
46 (mc, fn, taskname, _) = split_tid_mcfn(tid) 46 (mc, fn, taskname, _) = split_tid_mcfn(tid)
47 return (mc, fn, taskname) 47 return (mc, fn, taskname)
48 48
49def split_mc(n):
50 if n.startswith("mc:"):
51 _, mc, n = n.split(":", 2)
52 return (mc, n)
53 return ('', n)
54
49def split_tid_mcfn(tid): 55def split_tid_mcfn(tid):
50 if tid.startswith('mc:'): 56 if tid.startswith('mc:'):
51 elems = tid.split(':') 57 elems = tid.split(':')