Changeset 36232 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Mar 9, 2011 4:41:09 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70453
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/mp-win.cpp
r28800 r36232 34 34 #include <iprt/cpuset.h> 35 35 #include <iprt/assert.h> 36 37 38 AssertCompile(MAXIMUM_PROCESSORS <= RTCPUSET_MAX_CPUS); 36 39 37 40 … … 93 96 SYSTEM_INFO SysInfo; 94 97 GetSystemInfo(&SysInfo); 98 #ifdef RT_WITH_LOTS_OF_CPUS 99 # error "port me" 100 #endif 95 101 return RTCpuSetFromU64(pSet, SysInfo.dwActiveProcessorMask); 96 102 }
Note:
See TracChangeset
for help on using the changeset viewer.