mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2025-12-28 10:16:11 +01:00
hle: kernel: Migrate KSharedMemory to KAutoObject.
This commit is contained in:
parent
7ccbdd4d8d
commit
086db71e94
16 changed files with 128 additions and 114 deletions
|
|
@ -291,6 +291,9 @@ void KThread::Finalize() {
|
|||
parent->DecrementThreadCount();
|
||||
parent->GetResourceLimit()->Release(LimitableResource::Threads, 1);
|
||||
}
|
||||
|
||||
// Perform inherited finalization.
|
||||
KAutoObjectWithSlabHeapAndContainer<KThread, KSynchronizationObject>::Finalize();
|
||||
}
|
||||
|
||||
bool KThread::IsSignaled() const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue