Skip to content

Commit

Permalink
[lit] Stop hacking the GIL check interval.
Browse files Browse the repository at this point in the history
 - 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
  • Loading branch information
ddunbar committed Oct 23, 2013
1 parent a0d3bcf commit 279a89e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions utils/lit/lit/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 279a89e

Please sign in to comment.