Fix parser hang at 0% with single-core machines
authorCaleb Crome <caleb@signalessence.com>
Fri, 17 Feb 2012 20:21:59 +0000 (12:21 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 22 Feb 2012 20:25:30 +0000 (20:25 +0000)
commit313eb250b6570af3e2fe3cb4b025e11f0b60055a
treed9cf83391fd0932c81726cd0533207b250c7e332
parentcfa3edfa6879e742ea7ce0f8860e0b7230493a56
Fix parser hang at 0% with single-core machines

The number of threads is self.num_processes - 1 due to the range(1,
self.num_processes). Fixed by changing to range(0, self.num_processes).

(Bitbake rev: adc041fd9e3def29cdf9c1ae4849c5383bac46e5)

Signed-off-by: Caleb Crome <caleb@signalessence.com>
Signed-off-by: Christopher Larson <kergoth@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/cooker.py