| 1542 | } |
| 1543 | |
| 1544 | void dictForceRehash(dict *d) |
| 1545 | { |
| 1546 | int16_t pauserehash; |
| 1547 | __atomic_load(&d->pauserehash, &pauserehash, __ATOMIC_RELAXED); |
| 1548 | while (pauserehash == 0 && dictIsRehashing(d)) _dictRehashStep(d); |
| 1549 | } |
| 1550 | |
| 1551 | /* ------------------------------- Benchmark ---------------------------------*/ |
| 1552 |
no test coverage detected