diff options
| author | 2023-07-22 11:17:36 -0400 | |
|---|---|---|
| committer | 2023-07-22 11:17:36 -0400 | |
| commit | b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f (patch) | |
| tree | 14f41563aac7e5513bad341805afb164f1bf2f4f /src/core/debugger | |
| parent | Merge pull request #11098 from GPUCode/texel-buffers (diff) | |
| parent | kernel: reduce page table region checking (diff) | |
| download | yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar.gz yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar.xz yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.zip | |
Merge pull request #11094 from liamwhite/get
kernel: misc cleanup of page table accessors
Diffstat (limited to 'src/core/debugger')
| -rw-r--r-- | src/core/debugger/gdbstub.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/debugger/gdbstub.cpp b/src/core/debugger/gdbstub.cpp index e2a13bbd2..da6078372 100644 --- a/src/core/debugger/gdbstub.cpp +++ b/src/core/debugger/gdbstub.cpp | |||
| @@ -556,7 +556,7 @@ void GDBStub::HandleQuery(std::string_view command) { | |||
| 556 | } else { | 556 | } else { |
| 557 | SendReply(fmt::format( | 557 | SendReply(fmt::format( |
| 558 | "TextSeg={:x}", | 558 | "TextSeg={:x}", |
| 559 | GetInteger(system.ApplicationProcess()->PageTable().GetCodeRegionStart()))); | 559 | GetInteger(system.ApplicationProcess()->GetPageTable().GetCodeRegionStart()))); |
| 560 | } | 560 | } |
| 561 | } else if (command.starts_with("Xfer:libraries:read::")) { | 561 | } else if (command.starts_with("Xfer:libraries:read::")) { |
| 562 | Loader::AppLoader::Modules modules; | 562 | Loader::AppLoader::Modules modules; |
| @@ -731,7 +731,7 @@ void GDBStub::HandleRcmd(const std::vector<u8>& command) { | |||
| 731 | std::string reply; | 731 | std::string reply; |
| 732 | 732 | ||
| 733 | auto* process = system.ApplicationProcess(); | 733 | auto* process = system.ApplicationProcess(); |
| 734 | auto& page_table = process->PageTable(); | 734 | auto& page_table = process->GetPageTable(); |
| 735 | 735 | ||
| 736 | const char* commands = "Commands:\n" | 736 | const char* commands = "Commands:\n" |
| 737 | " get fastmem\n" | 737 | " get fastmem\n" |