1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:27:45 +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

@ -14,8 +14,8 @@
static void print_cpu_info(JsonObject const& value)
{
outln("CPU {}:", value.get("processor").as_u32());
outln("\tVendor ID: {}", value.get("cpuid").as_string());
outln("\tModel: {}", value.get("brand").as_string());
outln("\tVendor ID: {}", value.get("vendor_id").as_string());
outln("\tBrand: {}", value.get("brand").as_string());
outln("\tFamily: {}", value.get("family").as_u32());
outln("\tModel: {}", value.get("model").as_u32());
outln("\tStepping: {}", value.get("stepping").as_u32());