diff options
author | Subv <subv2112@gmail.com> | 2018-02-27 10:22:15 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-03-01 19:03:53 -0500 |
commit | 827f8ca3c77ad0b7e667c64b5c983b3b3ffe8d7d (patch) | |
tree | e557f60eddcd74f0ab380a81dd42749b3e46ef4e /src/core/loader/nso.h | |
parent | cc6e4ae6cf496f787c5277135aaa3e63cb98b780 (diff) |
Kernel: Store the program id in the Process class instead of the CodeSet class.
There may be many CodeSets per Process, so it's wasteful and overcomplicated to store the program id in each of them.
Diffstat (limited to 'src/core/loader/nso.h')
-rw-r--r-- | src/core/loader/nso.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/nso.h b/src/core/loader/nso.h index 14eb1d87e..1ae30a824 100644 --- a/src/core/loader/nso.h +++ b/src/core/loader/nso.h @@ -29,7 +29,7 @@ public: return IdentifyType(file, filepath); } - static VAddr LoadModule(const std::string& path, VAddr load_base, u64 tid); + static VAddr LoadModule(const std::string& path, VAddr load_base); ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override; |