Rename context_frame to cpu_context

This commit is contained in:
Maurice Heumann
2025-02-10 14:28:42 +01:00
parent a2af18787c
commit a5bae30e00
6 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
#include "exception_dispatch.hpp"
#include "process_context.hpp"
#include "context_frame.hpp"
#include "cpu_context.hpp"
#include <platform/status.hpp>
@@ -146,7 +146,7 @@ void dispatch_exception(x64_emulator& emu, const process_context& proc, const DW
{
CONTEXT64 ctx{};
ctx.ContextFlags = CONTEXT64_ALL;
context_frame::save(emu, ctx);
cpu_context::save(emu, ctx);
exception_record record{};
memset(&record, 0, sizeof(record));