mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-06 13:07:52 -05:00
hle: kernel: HandleTable: Remove deprecated APIs.
This commit is contained in:
@ -80,10 +80,10 @@ public:
|
||||
std::vector<std::unique_ptr<WaitTreeItem>> GetChildren() const override;
|
||||
|
||||
private:
|
||||
VAddr mutex_address;
|
||||
u32 mutex_value;
|
||||
Kernel::Handle owner_handle;
|
||||
std::shared_ptr<Kernel::KThread> owner;
|
||||
VAddr mutex_address{};
|
||||
u32 mutex_value{};
|
||||
Kernel::Handle owner_handle{};
|
||||
Kernel::KThread* owner{};
|
||||
};
|
||||
|
||||
class WaitTreeCallstack : public WaitTreeExpandableItem {
|
||||
|
Reference in New Issue
Block a user