diff options
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/core/core.h b/src/core/core.h index fb5cda2f5..0042ac170 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -184,8 +184,8 @@ public: | |||
| 184 | /// Forcibly detach the debugger if it is running. | 184 | /// Forcibly detach the debugger if it is running. |
| 185 | void DetachDebugger(); | 185 | void DetachDebugger(); |
| 186 | 186 | ||
| 187 | std::unique_lock<std::mutex> StallProcesses(); | 187 | std::unique_lock<std::mutex> StallApplication(); |
| 188 | void UnstallProcesses(); | 188 | void UnstallApplication(); |
| 189 | 189 | ||
| 190 | /** | 190 | /** |
| 191 | * Initialize the debugger. | 191 | * Initialize the debugger. |
| @@ -295,11 +295,11 @@ public: | |||
| 295 | /// Gets the manager for the guest device memory | 295 | /// Gets the manager for the guest device memory |
| 296 | [[nodiscard]] const Core::DeviceMemory& DeviceMemory() const; | 296 | [[nodiscard]] const Core::DeviceMemory& DeviceMemory() const; |
| 297 | 297 | ||
| 298 | /// Provides a pointer to the current process | 298 | /// Provides a pointer to the application process |
| 299 | [[nodiscard]] Kernel::KProcess* CurrentProcess(); | 299 | [[nodiscard]] Kernel::KProcess* ApplicationProcess(); |
| 300 | 300 | ||
| 301 | /// Provides a constant pointer to the current process. | 301 | /// Provides a constant pointer to the application process. |
| 302 | [[nodiscard]] const Kernel::KProcess* CurrentProcess() const; | 302 | [[nodiscard]] const Kernel::KProcess* ApplicationProcess() const; |
| 303 | 303 | ||
| 304 | /// Provides a reference to the core timing instance. | 304 | /// Provides a reference to the core timing instance. |
| 305 | [[nodiscard]] Timing::CoreTiming& CoreTiming(); | 305 | [[nodiscard]] Timing::CoreTiming& CoreTiming(); |
| @@ -331,7 +331,7 @@ public: | |||
| 331 | /// Provides a constant reference to the speed limiter | 331 | /// Provides a constant reference to the speed limiter |
| 332 | [[nodiscard]] const Core::SpeedLimiter& SpeedLimiter() const; | 332 | [[nodiscard]] const Core::SpeedLimiter& SpeedLimiter() const; |
| 333 | 333 | ||
| 334 | [[nodiscard]] u64 GetCurrentProcessProgramID() const; | 334 | [[nodiscard]] u64 GetApplicationProcessProgramID() const; |
| 335 | 335 | ||
| 336 | /// Gets the name of the current game | 336 | /// Gets the name of the current game |
| 337 | [[nodiscard]] Loader::ResultStatus GetGameName(std::string& out) const; | 337 | [[nodiscard]] Loader::ResultStatus GetGameName(std::string& out) const; |
| @@ -396,8 +396,8 @@ public: | |||
| 396 | void SetExitLock(bool locked); | 396 | void SetExitLock(bool locked); |
| 397 | [[nodiscard]] bool GetExitLock() const; | 397 | [[nodiscard]] bool GetExitLock() const; |
| 398 | 398 | ||
| 399 | void SetCurrentProcessBuildID(const CurrentBuildProcessID& id); | 399 | void SetApplicationProcessBuildID(const CurrentBuildProcessID& id); |
| 400 | [[nodiscard]] const CurrentBuildProcessID& GetCurrentProcessBuildID() const; | 400 | [[nodiscard]] const CurrentBuildProcessID& GetApplicationProcessBuildID() const; |
| 401 | 401 | ||
| 402 | /// Register a host thread as an emulated CPU Core. | 402 | /// Register a host thread as an emulated CPU Core. |
| 403 | void RegisterCoreThread(std::size_t id); | 403 | void RegisterCoreThread(std::size_t id); |