diff options
Diffstat (limited to 'src/core/arm/debug.h')
| -rw-r--r-- | src/core/arm/debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/arm/debug.h b/src/core/arm/debug.h index c542633db..3cd671365 100644 --- a/src/core/arm/debug.h +++ b/src/core/arm/debug.h | |||
| @@ -14,9 +14,9 @@ std::optional<std::string> GetThreadName(const Kernel::KThread* thread); | |||
| 14 | std::string_view GetThreadWaitReason(const Kernel::KThread* thread); | 14 | std::string_view GetThreadWaitReason(const Kernel::KThread* thread); |
| 15 | std::string GetThreadState(const Kernel::KThread* thread); | 15 | std::string GetThreadState(const Kernel::KThread* thread); |
| 16 | 16 | ||
| 17 | Loader::AppLoader::Modules FindModules(const Kernel::KProcess* process); | 17 | Loader::AppLoader::Modules FindModules(Kernel::KProcess* process); |
| 18 | Kernel::KProcessAddress GetModuleEnd(const Kernel::KProcess* process, Kernel::KProcessAddress base); | 18 | Kernel::KProcessAddress GetModuleEnd(const Kernel::KProcess* process, Kernel::KProcessAddress base); |
| 19 | Kernel::KProcessAddress FindMainModuleEntrypoint(const Kernel::KProcess* process); | 19 | Kernel::KProcessAddress FindMainModuleEntrypoint(Kernel::KProcess* process); |
| 20 | 20 | ||
| 21 | void InvalidateInstructionCacheRange(const Kernel::KProcess* process, u64 address, u64 size); | 21 | void InvalidateInstructionCacheRange(const Kernel::KProcess* process, u64 address, u64 size); |
| 22 | 22 | ||
| @@ -28,7 +28,7 @@ struct BacktraceEntry { | |||
| 28 | std::string name; | 28 | std::string name; |
| 29 | }; | 29 | }; |
| 30 | 30 | ||
| 31 | std::vector<BacktraceEntry> GetBacktraceFromContext(const Kernel::KProcess* process, | 31 | std::vector<BacktraceEntry> GetBacktraceFromContext(Kernel::KProcess* process, |
| 32 | const Kernel::Svc::ThreadContext& ctx); | 32 | const Kernel::Svc::ThreadContext& ctx); |
| 33 | std::vector<BacktraceEntry> GetBacktrace(const Kernel::KThread* thread); | 33 | std::vector<BacktraceEntry> GetBacktrace(const Kernel::KThread* thread); |
| 34 | 34 | ||