hle: kernel: Refactor out various KThread std::shared_ptr usage.

This commit is contained in:
bunnei 2021-04-02 18:02:10 -07:00
parent 0cff50a7b5
commit 07939c59a6
10 changed files with 30 additions and 58 deletions

View file

@ -46,7 +46,7 @@ public:
return HANDLE_TYPE;
}
ResultCode SendSyncRequest(std::shared_ptr<KThread> thread, Core::Memory::Memory& memory,
ResultCode SendSyncRequest(KThread* thread, Core::Memory::Memory& memory,
Core::Timing::CoreTiming& core_timing);
bool IsSignaled() const override;