mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 18:40:05 +00:00
hle: kernel: KThread: Release thread resource on thread exit.
This commit is contained in:
parent
10738839ad
commit
e24c6dab93
@ -247,6 +247,7 @@ void KThread::Finalize() {
|
|||||||
// Decrement the parent process's thread count.
|
// Decrement the parent process's thread count.
|
||||||
if (parent != nullptr) {
|
if (parent != nullptr) {
|
||||||
parent->DecrementThreadCount();
|
parent->DecrementThreadCount();
|
||||||
|
parent->GetResourceLimit()->Release(ResourceType::Threads, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user