Added "DoNotCreatePageTable" boolean to CreateProcess

This commit is contained in:
Alex
2023-01-09 17:19:06 +02:00
parent e1a11bba4c
commit 1297aecc8a
2 changed files with 16 additions and 9 deletions

View File

@ -288,7 +288,9 @@ namespace Tasking
PCB *CreateProcess(PCB *Parent,
const char *Name,
TaskTrustLevel TrustLevel, void *Image = nullptr);
TaskTrustLevel TrustLevel,
void *Image = nullptr,
bool DoNotCreatePageTable = false);
TCB *CreateThread(PCB *Parent,
IP EntryPoint,