Changeset 48765 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Sep 30, 2013 8:51:08 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r48607 r48765 956 956 // no locking required 957 957 958 return E_NOTIMPL; 958 *aCount = RTMpGetPresentCoreCount(); 959 return S_OK; 960 } 961 962 /** 963 * Returns the number of installed physical processor cores. 964 * 965 * @returns COM status code 966 * @param count address of result variable 967 */ 968 STDMETHODIMP Host::COMGETTER(ProcessorOnlineCoreCount)(ULONG *aCount) 969 { 970 CheckComArgOutPointerValid(aCount); 971 // no locking required 972 973 *aCount = RTMpGetOnlineCoreCount(); 974 return S_OK; 959 975 } 960 976
Note:
See TracChangeset
for help on using the changeset viewer.