[llvm] r193508 - Clarify the comment about BSD versions in r193465
Alp Toker
alp at nuanti.com
Sun Oct 27 13:49:19 PDT 2013
Author: alp
Date: Sun Oct 27 15:49:19 2013
New Revision: 193508
URL: http://llvm.org/viewvc/llvm-project?rev=193508&view=rev
Log:
Clarify the comment about BSD versions in r193465
Modified:
llvm/trunk/utils/lit/lit/run.py
Modified: llvm/trunk/utils/lit/lit/run.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/lit/lit/run.py?rev=193508&r1=193507&r2=193508&view=diff
==============================================================================
--- llvm/trunk/utils/lit/lit/run.py (original)
+++ llvm/trunk/utils/lit/lit/run.py Sun Oct 27 15:49:19 2013
@@ -217,7 +217,8 @@ class Run(object):
canceled_flag = multiprocessing.Value('i', 0)
consumer = MultiprocessResultsConsumer(self, display, jobs)
except ImportError:
- # Workaround for BSD: http://bugs.python.org/issue3770
+ # multiprocessing fails to initialize with certain OpenBSD and
+ # FreeBSD Python versions: http://bugs.python.org/issue3770
self.lit_config.note('failed to initialize multiprocessing')
consumer = None
if not consumer:
More information about the llvm-commits
mailing list