mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Add a sleep(0.00001) call to make sure all threads run.
This commit is contained in:
parent
2830dcc15c
commit
07af9a7ddd
1 changed files with 2 additions and 0 deletions
|
|
@ -77,6 +77,7 @@ def _donework(self):
|
|||
self.mutex.release()
|
||||
|
||||
def _worker(self):
|
||||
time.sleep(0.00001) # Let other threads run
|
||||
while 1:
|
||||
job = self._getwork()
|
||||
if not job:
|
||||
|
|
@ -97,6 +98,7 @@ def run(self, nworkers):
|
|||
# Main program
|
||||
|
||||
def main():
|
||||
sys.argv.append("/tmp")
|
||||
nworkers = 4
|
||||
opts, args = getopt.getopt(sys.argv[1:], '-w:')
|
||||
for opt, arg in opts:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue