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