Changeset 26061 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Jan 27, 2010 10:18:30 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56980
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibCpuHotPlug.cpp
r26058 r26061 34 34 * @returns VBox status code. 35 35 */ 36 VBGLR3DECL(int) VbglR3CpuHot plugInit(void)36 VBGLR3DECL(int) VbglR3CpuHotPlugInit(void) 37 37 { 38 38 int rc = VbglR3CtlFilterMask(VMMDEV_EVENT_CPU_HOTPLUG, 0); … … 58 58 * @returns VBox status. 59 59 */ 60 VBGLR3DECL(int) VbglR3CpuHot plugTerm(void)60 VBGLR3DECL(int) VbglR3CpuHotPlugTerm(void) 61 61 { 62 62 /* Clear the events. */ … … 78 78 * @param pidCpuPackage Where to store the CPU package ID on success. 79 79 */ 80 VBGLR3DECL(int) VbglR3CpuHot plugWaitForEvent(VMMDevCpuEventType *penmEventType, uint32_t *pidCpuCore, uint32_t *pidCpuPackage)80 VBGLR3DECL(int) VbglR3CpuHotPlugWaitForEvent(VMMDevCpuEventType *penmEventType, uint32_t *pidCpuCore, uint32_t *pidCpuPackage) 81 81 { 82 82 AssertPtrReturn(penmEventType, VERR_INVALID_POINTER);
Note:
See TracChangeset
for help on using the changeset viewer.