mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-08-04 04:02:24 -07:00
hle: kernel: Rename Process to KProcess.
This commit is contained in:
@@ -17,7 +17,7 @@ class System;
|
||||
}
|
||||
|
||||
namespace Kernel {
|
||||
class Process;
|
||||
class KProcess;
|
||||
}
|
||||
|
||||
namespace Loader {
|
||||
@@ -86,12 +86,12 @@ public:
|
||||
return IdentifyType(file);
|
||||
}
|
||||
|
||||
static std::optional<VAddr> LoadModule(Kernel::Process& process, Core::System& system,
|
||||
static std::optional<VAddr> LoadModule(Kernel::KProcess& process, Core::System& system,
|
||||
const FileSys::VfsFile& nso_file, VAddr load_base,
|
||||
bool should_pass_arguments, bool load_into_process,
|
||||
std::optional<FileSys::PatchManager> pm = {});
|
||||
|
||||
LoadResult Load(Kernel::Process& process, Core::System& system) override;
|
||||
LoadResult Load(Kernel::KProcess& process, Core::System& system) override;
|
||||
|
||||
ResultStatus ReadNSOModules(Modules& out_modules) override;
|
||||
|
||||
|
Reference in New Issue
Block a user