| 217 | } |
| 218 | |
| 219 | WELS_THREAD_ERROR_CODE WelsQueryLogicalProcessInfo (WelsLogicalProcessInfo* pInfo) { |
| 220 | SYSTEM_INFO si; |
| 221 | |
| 222 | GetSystemInfo (&si); |
| 223 | |
| 224 | pInfo->ProcessorCount = si.dwNumberOfProcessors; |
| 225 | |
| 226 | return WELS_THREAD_ERROR_OK; |
| 227 | } |
| 228 | |
| 229 | #else //platform: #ifdef _WIN32 |
| 230 |
no outgoing calls
no test coverage detected