diff options
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" |