mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 03:27:59 -05:00
kernel: convert KPort, KSession
This commit is contained in:
@ -395,6 +395,10 @@ public:
|
||||
return watchpoints;
|
||||
}
|
||||
|
||||
const std::string& GetName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
private:
|
||||
void PinThread(s32 core_id, KThread* thread) {
|
||||
ASSERT(0 <= core_id && core_id < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
|
||||
@ -499,6 +503,8 @@ private:
|
||||
|
||||
size_t memory_release_hint{};
|
||||
|
||||
std::string name{};
|
||||
|
||||
bool is_signaled{};
|
||||
bool is_suspended{};
|
||||
bool is_immortal{};
|
||||
|
Reference in New Issue
Block a user