Changeset 58415 in vbox for trunk/src/VBox
- Timestamp:
- Oct 26, 2015 11:16:20 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/vbox-cpuhotplug.dsl
r56292 r58415 26 26 Store (Arg0, CPUC) 27 27 Return(LEqual(CPUL, 0x01)) 28 } 29 30 // Method to notify the VMM that a CPU is not 31 // in use anymore and can be safely removed. 32 // Using the extra method here because the CPUL 33 // register identifer clashes with the CPUL object defined 34 // below making iasl starting with version 20150930 fail. 35 // 36 // Think of CPLO as "CPU Lock Open" 37 Method(CPLO, 1) 38 { 39 Store(Arg0, CPUL) 28 40 } 29 41 … … 74 86 Method(_EJ0, 1) \ 75 87 { \ 76 Store(id, CPUL) /* Unlock the CPU */\88 CPLO(id) /* Unlock the CPU */ \ 77 89 Return \ 78 90 } \
Note:
See TracChangeset
for help on using the changeset viewer.