ptos/amd64: ps: Add support for CPL 3 processes

Signed-off-by: Chloe M <chloe@mensia.org>
This commit is contained in:
2026-07-15 01:10:39 -04:00
parent bda2c510cd
commit 85927ce8c1
4 changed files with 30 additions and 7 deletions
-5
View File
@@ -25,11 +25,6 @@ PsCreateProcess(const CHAR *Name, ULONG Flags, PROCESS **Result)
return STATUS_INVALID_PARAM;
}
/* TODO: Support user-level processes */
if (ISSET(Flags, PS_USER)) {
return STATUS_NOT_SUPPORTED;
}
NameLen = RtlStrLen(Name);
if (NameLen >= PS_NAME_MAX - 1) {
return STATUS_NAME_TOO_LONG;