1
Fork 0
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:
Linus Groh 2022-04-03 17:09:29 +01:00 committed by Andreas Kling
parent 3f9c2495e5
commit 0f27432ec6
3 changed files with 4 additions and 5 deletions

View file

@ -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"));