mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
Kernel+SystemMonitor+lscpu: Rename 'CPUID' -> 'Vendor ID'
This is what the Intel manual, as well as Linux's cpuinfo calls it.
This commit is contained in:
parent
3f9c2495e5
commit
0f27432ec6
3 changed files with 4 additions and 5 deletions
|
@ -582,8 +582,7 @@ private:
|
|||
auto& info = proc.info();
|
||||
auto obj = TRY(array.add_object());
|
||||
TRY(obj.add("processor", proc.id()));
|
||||
// FIXME: Rename this to use the same name everywhere.
|
||||
TRY(obj.add("cpuid", info.vendor_id_string()));
|
||||
TRY(obj.add("vendor_id", info.vendor_id_string()));
|
||||
TRY(obj.add("family", info.display_family()));
|
||||
|
||||
auto features_array = TRY(obj.add_array("features"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue