Changeset 57467 in vbox
- Timestamp:
- Aug 20, 2015 8:53:34 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102235
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r57429 r57467 1745 1745 * @param pvUser Unused. 1746 1746 */ 1747 DECLCALLBACK(VBOXSTRICTRC) hmR3RemovePatches(PVM pVM, PVMCPU pVCpu, void *pvUser)1747 static DECLCALLBACK(VBOXSTRICTRC) hmR3RemovePatches(PVM pVM, PVMCPU pVCpu, void *pvUser) 1748 1748 { 1749 1749 VMCPUID idCpu = (VMCPUID)(uintptr_t)pvUser; … … 1884 1884 * 1885 1885 */ 1886 DECLCALLBACK(VBOXSTRICTRC) hmR3ReplaceTprInstr(PVM pVM, PVMCPU pVCpu, void *pvUser)1886 static DECLCALLBACK(VBOXSTRICTRC) hmR3ReplaceTprInstr(PVM pVM, PVMCPU pVCpu, void *pvUser) 1887 1887 { 1888 1888 /* … … 2058 2058 * 2059 2059 */ 2060 DECLCALLBACK(VBOXSTRICTRC) hmR3PatchTprInstr(PVM pVM, PVMCPU pVCpu, void *pvUser)2060 static DECLCALLBACK(VBOXSTRICTRC) hmR3PatchTprInstr(PVM pVM, PVMCPU pVCpu, void *pvUser) 2061 2061 { 2062 2062 /* -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r57358 r57467 1391 1391 * @param uVector SIPI vector 1392 1392 */ 1393 DECLCALLBACK(int) vmmR3SendSipi(PVM pVM, VMCPUID idCpu, uint32_t uVector)1393 static DECLCALLBACK(int) vmmR3SendSipi(PVM pVM, VMCPUID idCpu, uint32_t uVector) 1394 1394 { 1395 1395 PVMCPU pVCpu = VMMGetCpuById(pVM, idCpu); … … 1422 1422 } 1423 1423 1424 DECLCALLBACK(int) vmmR3SendInitIpi(PVM pVM, VMCPUID idCpu)1424 static DECLCALLBACK(int) vmmR3SendInitIpi(PVM pVM, VMCPUID idCpu) 1425 1425 { 1426 1426 PVMCPU pVCpu = VMMGetCpuById(pVM, idCpu);
Note:
See TracChangeset
for help on using the changeset viewer.