mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 15:08:14 +00:00
Minor changes.
svn path=/trunk/; revision=2233
This commit is contained in:
parent
008868b972
commit
64fe62dd6d
2 changed files with 21 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: process.c,v 1.67 2001/08/26 17:30:21 ekohl Exp $
|
||||
/* $Id: process.c,v 1.68 2001/09/07 21:35:45 ea Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -757,12 +757,29 @@ NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
|||
case ProcessWorkingSetWatch:
|
||||
case ProcessUserModeIOPL:
|
||||
case ProcessEnableAlignmentFaultFixup:
|
||||
Status = STATUS_NOT_IMPLEMENTED;
|
||||
break;
|
||||
|
||||
case ProcessForegroundInformation:
|
||||
((PPROCESS_PRIORITY_CLASS)ProcessInformation)->Foreground =
|
||||
FALSE; /*FIXME: how to compute it? */
|
||||
case ProcessPriorityClass:
|
||||
((PPROCESS_PRIORITY_CLASS)ProcessInformation)->PriorityClass =
|
||||
Process->PriorityClass;
|
||||
break;
|
||||
|
||||
case ProcessWx86Information:
|
||||
case ProcessHandleCount:
|
||||
case ProcessAffinityMask:
|
||||
default:
|
||||
case ProcessPriorityBoost:
|
||||
case ProcessDeviceMap:
|
||||
case ProcessSessionInformation:
|
||||
case ProcessWow64Information:
|
||||
Status = STATUS_NOT_IMPLEMENTED;
|
||||
break;
|
||||
|
||||
default:
|
||||
Status = STATUS_INVALID_INFO_CLASS;
|
||||
}
|
||||
ObDereferenceObject(Process);
|
||||
return(Status);
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/*
|
||||
/* $Id: tinfo.c,v 1.16 2001/09/07 21:35:45 ea Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* FILE: ntoskrnl/ps/tinfo.c
|
||||
|
|
Loading…
Reference in a new issue