forked from eden-emu/eden
kernel: convert KPort, KSession
This commit is contained in:
parent
d24ab14126
commit
097c25b164
28 changed files with 196 additions and 226 deletions
|
@ -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{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue