rename kvm references to pvm

The term KVM is missleading because we are not using linux kernel
virtualization. PVM stands for "Pound Virtual Machine" which is more
accurate.

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar 2025-09-30 18:13:48 -04:00
parent 70a1abc62f
commit 9d7b05d6ae
No known key found for this signature in database
GPG key ID: 04307C401999C596
14 changed files with 100 additions and 119 deletions

View file

@ -1,7 +1,7 @@
#include "panels.h"
#include <imgui.h>
#include <math.h>
#include "kvm/kvm.h"
#include "pvm/pvm.h"
#include "common/passert.h"
int8_t gui::panel::render_performance_panel(gui::panel::performance_panel_t* panel, performance_data_t* data,
@ -94,7 +94,7 @@ int8_t gui::panel::render_cpu_panel(bool* show_cpu_result_popup)
if (::ImGui::Button("Run CPU Test", ImVec2(120, 0)))
{
pound::kvm::cpuTest();
pound::pvm::cpuTest();
*show_cpu_result_popup = true;
}
if (true == *show_cpu_result_popup)