diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2011-10-22 00:28:46 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2011-10-22 00:28:46 +0000 |
commit | b9a73875364cec403fedafd1085196d21e84b419 (patch) | |
tree | 38e66e452e438eea8a219812ac476c216c51c7dd /src/VBox/Runtime/r3/darwin/mp-darwin.cpp | |
parent | ffad572cc8707c320b18b79a6f6d1d5490df9104 (diff) | |
download | VirtualBox-svn-b9a73875364cec403fedafd1085196d21e84b419.tar.gz |
IPRT: -Wunused-parameter.
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@39083 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/r3/darwin/mp-darwin.cpp')
-rw-r--r-- | src/VBox/Runtime/r3/darwin/mp-darwin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/VBox/Runtime/r3/darwin/mp-darwin.cpp b/src/VBox/Runtime/r3/darwin/mp-darwin.cpp index ceedc62e843..aa901e0a8df 100644 --- a/src/VBox/Runtime/r3/darwin/mp-darwin.cpp +++ b/src/VBox/Runtime/r3/darwin/mp-darwin.cpp @@ -160,6 +160,7 @@ RTDECL(RTCPUID) RTMpGetOnlineCount(void) RTDECL(uint32_t) RTMpGetCurFrequency(RTCPUID idCpu) { /** @todo figure out how to get the current cpu speed on darwin. Have to check what powermanagement does. */ + NOREF(idCpu); return 0; } |