hle: kernel: Rename Process to KProcess.

This commit is contained in:
bunnei 2021-04-23 22:04:28 -07:00
parent 796dddf78f
commit ad048de3d6
83 changed files with 249 additions and 247 deletions

View file

@ -71,7 +71,7 @@ void KSession::OnClientClosed() {
void KSession::PostDestroy(uintptr_t arg) {
// Release the session count resource the owner process holds.
Process* owner = reinterpret_cast<Process*>(arg);
KProcess* owner = reinterpret_cast<KProcess*>(arg);
owner->GetResourceLimit()->Release(LimitableResource::Sessions, 1);
owner->Close();
}