Changeset 78870 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 30, 2019 8:54:59 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130982
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r78208 r78870 409 409 * @param pVCpu The cross context virtual CPU structure. 410 410 */ 411 VMM_INT_DECL(bool) APICIsEnabled(P VMCPU pVCpu)411 VMM_INT_DECL(bool) APICIsEnabled(PCVMCPU pVCpu) 412 412 { 413 413 PCAPICCPU pApicCpu = VMCPU_TO_APICCPU(pVCpu); … … 2485 2485 * @param pVCpu The cross context virtual CPU structure. 2486 2486 */ 2487 VMM_INT_DECL(uint64_t) APICGetBaseMsrNoCheck(P VMCPU pVCpu)2487 VMM_INT_DECL(uint64_t) APICGetBaseMsrNoCheck(PCVMCPU pVCpu) 2488 2488 { 2489 2489 VMCPU_ASSERT_EMT_OR_NOT_RUNNING(pVCpu); … … 2543 2543 * interrupt is pending (optional, can be NULL). 2544 2544 */ 2545 static bool apicGetHighestPendingInterrupt(P VMCPU pVCpu, uint8_t *pu8PendingIntr)2545 static bool apicGetHighestPendingInterrupt(PCVMCPU pVCpu, uint8_t *pu8PendingIntr) 2546 2546 { 2547 2547 PCXAPICPAGE pXApicPage = VMCPU_TO_CXAPICPAGE(pVCpu); … … 2569 2569 * interrupt (optional, can be NULL). 2570 2570 */ 2571 VMMDECL(int) APICGetTpr(P VMCPU pVCpu, uint8_t *pu8Tpr, bool *pfPending, uint8_t *pu8PendingIntr)2571 VMMDECL(int) APICGetTpr(PCVMCPU pVCpu, uint8_t *pu8Tpr, bool *pfPending, uint8_t *pu8PendingIntr) 2572 2572 { 2573 2573 VMCPU_ASSERT_EMT(pVCpu); … … 3493 3493 * (optional). 3494 3494 */ 3495 VMM_INT_DECL(int) APICGetApicPageForCpu(P VMCPU pVCpu, PRTHCPHYS pHCPhys, PRTR0PTR pR0Ptr, PRTR3PTR pR3Ptr, PRTRCPTR pRCPtr)3495 VMM_INT_DECL(int) APICGetApicPageForCpu(PCVMCPU pVCpu, PRTHCPHYS pHCPhys, PRTR0PTR pR0Ptr, PRTR3PTR pR3Ptr, PRTRCPTR pRCPtr) 3496 3496 { 3497 3497 AssertReturn(pVCpu, VERR_INVALID_PARAMETER);
Note:
See TracChangeset
for help on using the changeset viewer.