Added IPC for processes

This commit is contained in:
Alex
2022-10-27 03:06:43 +03:00
parent 7abfd16ace
commit 9d6a4f530a
3 changed files with 16 additions and 5 deletions

View File

@ -53,6 +53,7 @@ namespace InterProcessCommunication
IPC::IPC()
{
trace("Starting IPC Service...");
TaskManager->CreateThread(TaskManager->GetCurrentProcess(), (Tasking::IP)IPCServiceStub);
TaskManager->GetCurrentThread()->Rename("IPC Service");
}