3063
3063
content = file('/proc/cpuinfo', 'rb').read()
3064
3064
concurrency = cpucount(content)
3070
output = Popen(['sysctl', '-n', 'hw.availcpu'], stdout=PIPE).communicate()[0]
3070
output = Popen(['sysctl', '-n', 'hw.availcpu'],
3071
3072
concurrency = int(output)