| 155 | } |
| 156 | |
| 157 | int Timer::getCoreNumber() { |
| 158 | |
| 159 | #ifdef WIN64 |
| 160 | SYSTEM_INFO sysinfo; |
| 161 | GetSystemInfo(&sysinfo); |
| 162 | return sysinfo.dwNumberOfProcessors; |
| 163 | #else |
| 164 | // TODO |
| 165 | return 1; |
| 166 | #endif |
| 167 | |
| 168 | } |
| 169 | |
| 170 | void Timer::SleepMillis(uint32_t millis) { |
| 171 |
nothing calls this directly
no outgoing calls
no test coverage detected