MCPcopy Create free account
hub / github.com/Kitware/CMake / testProcess_usleep

Function testProcess_usleep

Source/kwsys/testProcess.c:36–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34/* BeOS 5 doesn't have usleep(), but it has snooze(), which is identical. */
35# include <be/kernel/OS.h>
36static inline void testProcess_usleep(unsigned int usec)
37{
38 snooze(usec);
39}
40#elif defined(_WIN32)
41/* Windows can only sleep in millisecond intervals. */
42static void testProcess_usleep(unsigned int usec)

Callers 1

runChild2Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…