- Timestamp:
- Sep 20, 2012 7:35:29 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp
r40128 r43377 81 81 { 82 82 /** LNXSYSTEM:<id> */ 83 {true, "LNXSYSTM: "}83 {true, "LNXSYSTM:*"} 84 84 }; 85 85 … … 88 88 { 89 89 /** device:<id> */ 90 {true, "device: "},90 {true, "device:*"}, 91 91 /** LNXSYBUS:<id> */ 92 {true, "LNXSYBUS: "}92 {true, "LNXSYBUS:*"} 93 93 }; 94 94 … … 97 97 { 98 98 /** ACPI0004:<id> */ 99 {true, "ACPI0004: "}99 {true, "ACPI0004:*"} 100 100 }; 101 101 … … 104 104 { 105 105 /** LNXCPU:<id> */ 106 {true, "LNXCPU: "},106 {true, "LNXCPU:*"}, 107 107 /** ACPI_CPU:<id> */ 108 {true, "ACPI_CPU: "}108 {true, "ACPI_CPU:*"} 109 109 }; 110 110 … … 173 173 RTDIRENTRY DirFolderContent; 174 174 bool fFound = false; 175 176 /* Get rid of the * filter which is in the path component. */ 177 if (pPathComponent->fNumberedSuffix) 178 cchName--; 179 175 180 while (RT_SUCCESS(RTDirRead(pDirCurr, &DirFolderContent, NULL))) /* Assumption that szName has always enough space */ 176 181 {
Note:
See TracChangeset
for help on using the changeset viewer.