MCPcopy Create free account
hub / github.com/ElementsProject/elements / MillisToTimeval

Function MillisToTimeval

src/util/time.cpp:183–189  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181}
182
183struct timeval MillisToTimeval(int64_t nTimeout)
184{
185 struct timeval timeout;
186 timeout.tv_sec = nTimeout / 1000;
187 timeout.tv_usec = (nTimeout % 1000) * 1000;
188 return timeout;
189}
190
191struct timeval MillisToTimeval(std::chrono::milliseconds ms)
192{

Callers 3

disconnected_cbMethod · 0.85
FUZZ_TARGET_INITFunction · 0.85
WaitMethod · 0.85

Calls 1

count_millisecondsFunction · 0.85

Tested by 1

FUZZ_TARGET_INITFunction · 0.68