Merge pull request #9182 from liamwhite/services-are-processes

kernel: assign KProcess to service threads
This commit is contained in:
bunnei 2022-11-09 15:52:23 -08:00 committed by GitHub
commit 770f23db34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 56 additions and 25 deletions

View file

@ -240,7 +240,7 @@ public:
void RegisterCoreThread(std::size_t core_id);
/// Register the current thread as a non CPU core thread.
void RegisterHostThread();
void RegisterHostThread(KThread* existing_thread = nullptr);
/// Gets the virtual memory manager for the kernel.
KMemoryManager& MemoryManager();