MCPcopy Create free account
hub / github.com/DFHack/dfhack / msleep

Method msleep

library/Console-posix.cpp:987–991  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

985}
986
987void Console::msleep (unsigned int msec)
988{
989 if (msec > 1000) sleep(msec/1000000);
990 usleep((msec % 1000000) * 1000);
991}
992
993bool Console::hide()
994{

Callers 2

kittensFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected