MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / GetNumberOfThreads

Function GetNumberOfThreads

Libraries/unrar/threadmisc.cpp:142–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140
141
142uint GetNumberOfThreads()
143{
144 uint NumCPU=GetNumberOfCPU();
145 if (NumCPU<1)
146 return 1;
147 if (NumCPU>MaxPoolThreads)
148 return MaxPoolThreads;
149 return NumCPU;
150}
151

Callers 1

InitMethod · 0.85

Calls 1

GetNumberOfCPUFunction · 0.85

Tested by

no test coverage detected