MCPcopy Create free account
hub / github.com/JeanLucPons/VanitySearch / SleepMillis

Method SleepMillis

Timer.cpp:170–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170void Timer::SleepMillis(uint32_t millis) {
171
172#ifdef WIN64
173 Sleep(millis);
174#else
175 usleep(millis*1000);
176#endif
177
178}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected