| 91 | /* BeOS 5 doesn't have usleep(), but it has snooze(), which is identical. */ |
| 92 | # include <be/kernel/OS.h> |
| 93 | static inline void kwsysProcess_usleep(unsigned int msec) |
| 94 | { |
| 95 | snooze(msec); |
| 96 | } |
| 97 | #else |
| 98 | # define kwsysProcess_usleep usleep |
| 99 | #endif |
no outgoing calls
no test coverage detected
searching dependent graphs…