diff options
| author | dherrada <33632497+dherrada@users.noreply.github.com> | 2020-07-21 16:18:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 16:18:51 -0400 |
| commit | 9e3fa863f1d0dcf8eae54554ffc7016eaa6de157 (patch) | |
| tree | 5130e268b1fad9dec287e93e3505a5a9a61a9249 /py | |
| parent | 612c6bb86b8762aa9388566eb69db9bbe4e8bbe4 (diff) | |
| parent | e047ea287f6658f1a1fd10ab31f45f25bce846c1 (diff) | |
Merge branch 'main' into type_hints
Diffstat (limited to 'py')
| -rw-r--r-- | py/mpz.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -444,6 +444,10 @@ STATIC size_t mpn_mul(mpz_dig_t *idig, mpz_dig_t *jdig, size_t jlen, mpz_dig_t * } ilen = id - oidig; + // check to prevent usb starvation + #ifdef RUN_BACKGROUND_TASKS + RUN_BACKGROUND_TASKS; + #endif } return ilen; |
