Changeset 38959 in vbox for trunk/include
- Timestamp:
- Oct 6, 2011 12:54:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/apic.h
r36536 r38959 6 6 7 7 /* 8 * Copyright (C) 2010 Oracle Corporation8 * Copyright (C) 2010-2011 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 50 50 #define APIC_REG_LVT_MASKED RT_BIT(16) 51 51 52 DECLINLINE(uint32_t) ApicRegRead(void *p Base, uint32_t reg)52 DECLINLINE(uint32_t) ApicRegRead(void *pvBase, uint32_t offReg) 53 53 { 54 return *(const volatile uint32_t *)((uintptr_t)pBase + reg);54 return *(const volatile uint32_t *)((uintptr_t)pvBase + offReg); 55 55 } 56 56
Note:
See TracChangeset
for help on using the changeset viewer.