mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-05 20:39:16 +00:00
Stability fixes (i hope); attempt to implement argc, argv, envp, auxv; Syscalls
This commit is contained in:
@ -54,7 +54,10 @@ namespace InterProcessCommunication
|
||||
IPC::IPC()
|
||||
{
|
||||
trace("Starting IPC Service...");
|
||||
TaskManager->CreateThread(TaskManager->GetCurrentProcess(), (Tasking::IP)IPCServiceStub);
|
||||
Vector<const char *> argv;
|
||||
Vector<const char *> envp;
|
||||
Vector<AuxiliaryVector> auxv;
|
||||
TaskManager->CreateThread(TaskManager->GetCurrentProcess(), (Tasking::IP)IPCServiceStub, argv, envp, auxv);
|
||||
TaskManager->GetCurrentThread()->Rename("IPC Service");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user