diff options
author | Alp Toker <alp@nuanti.com> | 2013-10-27 20:49:19 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-10-27 20:49:19 +0000 |
commit | 31bd72fb22924a8743455dad4c281918a9c49e16 (patch) | |
tree | decd3882b5e56149a5a8f77fbf2410fb98c98932 | |
parent | 7cce3f9404e716923f02cf1d981d8517bb846c43 (diff) | |
download | bcm5719-llvm-31bd72fb22924a8743455dad4c281918a9c49e16.tar.gz bcm5719-llvm-31bd72fb22924a8743455dad4c281918a9c49e16.zip |
Clarify the comment about BSD versions in r193465
llvm-svn: 193508
-rw-r--r-- | llvm/utils/lit/lit/run.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/utils/lit/lit/run.py b/llvm/utils/lit/lit/run.py index 97f8c6fe010..e3d9344d694 100644 --- a/llvm/utils/lit/lit/run.py +++ b/llvm/utils/lit/lit/run.py @@ -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: |