| 321 | } |
| 322 | |
| 323 | static long long timeInMilliseconds(void) { |
| 324 | struct timeval tv; |
| 325 | |
| 326 | gettimeofday(&tv,NULL); |
| 327 | return (((long long)tv.tv_sec)*1000)+(tv.tv_usec/1000); |
| 328 | } |
| 329 | |
| 330 | /* Rehash in ms+"delta" milliseconds. The value of "delta" is larger |
| 331 | * than 0, and is smaller than 1 in most cases. The exact upper bound |
no outgoing calls
no test coverage detected