Changeset 10425 in vbox
- Timestamp:
- Jul 9, 2008 2:08:23 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33085
- Location:
- trunk/src/VBox/Runtime/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/RTMpGetCurFrequency-generic.cpp
r10418 r10425 29 29 */ 30 30 31 32 31 /******************************************************************************* 33 32 * Header Files * 34 33 *******************************************************************************/ 35 34 #include <iprt/mp.h> 36 #include <iprt/cpuset.h>37 35 38 36 39 RTDECL( RTCPUID) RTMpGetCurFrequency(void)37 RTDECL(uint32_t) RTMpGetCurFrequency(RTCPUID idCpu) 40 38 { 41 /** @note this is a generic stub which returns "unknown". */ 39 NOREF(idCpu); 40 /* this is a generic stub which returns "unknown". */ 42 41 return 0; 43 42 } -
trunk/src/VBox/Runtime/generic/RTMpGetMaxFrequency-generic.cpp
r10418 r10425 29 29 */ 30 30 31 32 31 /******************************************************************************* 33 32 * Header Files * 34 33 *******************************************************************************/ 35 34 #include <iprt/mp.h> 36 #include <iprt/cpuset.h>37 35 38 36 39 RTDECL( RTCPUID) RTMpGetMaxFrequency(void)37 RTDECL(uint32_t) RTMpGetMaxFrequency(RTCPUID idCpu) 40 38 { 41 /** @note this is a generic stub which returns "unknown". */ 39 NOREF(idCpu); 40 /* this is a generic stub which returns "unknown". */ 42 41 return 0; 43 42 }
Note:
See TracChangeset
for help on using the changeset viewer.