summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2013-10-23 22:19:32 +0000
committerDaniel Dunbar <daniel@zuster.org>2013-10-23 22:19:32 +0000
commit279a89ebdbbd7b85a2498066da8df7a871f7f20c (patch)
tree8fbbccacdaf146b9856b8e08567a94585f8c39e7 /utils
parenta0d3bcfd8cf26f2849e0ea48419f31659dacb0bf (diff)
downloadllvm-279a89ebdbbd7b85a2498066da8df7a871f7f20c.tar.gz
llvm-279a89ebdbbd7b85a2498066da8df7a871f7f20c.tar.bz2
llvm-279a89ebdbbd7b85a2498066da8df7a871f7f20c.tar.xz
[lit] Stop hacking the GIL check interval.
- This was never a big win, and is irrelevant now that we commonly use multiprocessing based parallelism. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193280 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/lit/lit/main.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/utils/lit/lit/main.py b/utils/lit/lit/main.py
index 3d187079cb..dcf0c9f33a 100755
--- a/utils/lit/lit/main.py
+++ b/utils/lit/lit/main.py
@@ -109,12 +109,6 @@ def write_test_results(run, lit_config, testing_time, output_path):
f.close()
def main(builtinParameters = {}):
- # Bump the GIL check interval, its more important to get any one thread to a
- # blocking operation (hopefully exec) than to try and unblock other threads.
- #
- # FIXME: This is a hack.
- sys.setcheckinterval(1000)
-
# Use processes by default on Unix platforms.
isWindows = platform.system() == 'Windows'
useProcessesIsDefault = not isWindows