| 554 | } |
| 555 | |
| 556 | long long timeInMilliseconds(void) { |
| 557 | struct timeval tv; |
| 558 | |
| 559 | gettimeofday(&tv,NULL); |
| 560 | return (((long long)tv.tv_sec)*1000)+(tv.tv_usec/1000); |
| 561 | } |
| 562 | |
| 563 | dictAsyncRehashCtl::~dictAsyncRehashCtl() { |
| 564 | while (deGCList != nullptr) { |
no outgoing calls
no test coverage detected