| 9983 | #if GTEST_IS_THREADSAFE && GTEST_OS_WINDOWS |
| 9984 | |
| 9985 | void SleepMilliseconds(int n) { |
| 9986 | ::Sleep(static_cast<DWORD>(n)); |
| 9987 | } |
| 9988 | |
| 9989 | AutoHandle::AutoHandle() |
| 9990 | : handle_(INVALID_HANDLE_VALUE) {} |
nothing calls this directly
no outgoing calls
no test coverage detected