mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 13:33:42 +00:00
at least it compiles now...
svn path=/trunk/; revision=851
This commit is contained in:
parent
66f738dbd1
commit
43f46ed4f8
1 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ VOID PsInitProcessManagment(VOID)
|
|||
PROCESS_ALL_ACCESS,
|
||||
NULL,
|
||||
PsProcessType);
|
||||
SystemProcess->Pcb.BasePriority = NORMAL_PRIORITY_CLASS;
|
||||
SystemProcess->Pcb.BasePriority = PROCESS_PRIO_NORMAL;
|
||||
KeInitializeDispatcherHeader(&SystemProcess->Pcb.DispatcherHeader,
|
||||
InternalProcessType,
|
||||
sizeof(EPROCESS),
|
||||
|
@ -267,7 +267,7 @@ NtCreateProcess (
|
|||
FALSE);
|
||||
KProcess = &(Process->Pcb);
|
||||
|
||||
KProcess->BasePriority = NORMAL_PRIORITY_CLASS;
|
||||
KProcess->BasePriority = PROCESS_PRIO_NORMAL;
|
||||
InitializeListHead(&(KProcess->MemoryAreaList));
|
||||
Process->UniqueProcessId = InterlockedIncrement(&PiNextProcessUniqueId);
|
||||
Process->InheritedFromUniqueProcessId = ParentProcess->UniqueProcessId;
|
||||
|
|
Loading…
Reference in a new issue