MCPcopy Create free account
hub / github.com/TASEmulators/fceux / msleep

Function msleep

src/drivers/common/os_utils.cpp:91–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89}
90//************************************************************
91int msleep( int ms )
92{
93 int ret = 0;
94 #ifdef WIN32
95 Sleep(ms);
96 #else
97 ret = usleep(ms*1000);
98 #endif
99 return ret;
100}
101//************************************************************

Callers 11

CloseGameFunction · 0.85
fceuWrapperUpdateFunction · 0.85
FCEUD_DebugBreakpointFunction · 0.85
aviRecordAddFrameFunction · 0.85
runMethod · 0.85
~TraceLoggerDialog_tMethod · 0.85
logMaxLinesChangedMethod · 0.85
clearLogMethod · 0.85
toggleLoggingOnOffMethod · 0.85
FCEUD_TraceLoggerStopFunction · 0.85
LuaKillMessageBoxFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected