(nthread)
| 20 | |
| 21 | |
| 22 | def wait_threads_blocked(nthread): |
| 23 | # Arbitrary sleep to wait until N threads are blocked, |
| 24 | # like waiting for a lock. |
| 25 | time.sleep(0.010 * nthread) |
| 26 | |
| 27 | |
| 28 | class Bunch(object): |
no test coverage detected
searching dependent graphs…