MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / timeInMilliseconds

Function timeInMilliseconds

src/util/dict.c:323–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321}
322
323static 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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected