mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 12:45:55 +00:00
- Add debug messages for unimplemented cases in NtQueryInformationProcess
svn path=/trunk/; revision=41384
This commit is contained in:
parent
e8062e7d29
commit
bdee30aee5
1 changed files with 3 additions and 0 deletions
|
@ -171,6 +171,7 @@ NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
||||||
if (!NT_SUCCESS(Status)) break;
|
if (!NT_SUCCESS(Status)) break;
|
||||||
|
|
||||||
/* TODO: Implement this case */
|
/* TODO: Implement this case */
|
||||||
|
DPRINT1("Query ProcessQuotaLimits unimplemented\n");
|
||||||
Status = STATUS_NOT_IMPLEMENTED;
|
Status = STATUS_NOT_IMPLEMENTED;
|
||||||
|
|
||||||
/* Dereference the process */
|
/* Dereference the process */
|
||||||
|
@ -303,6 +304,7 @@ NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
||||||
case ProcessLdtInformation:
|
case ProcessLdtInformation:
|
||||||
case ProcessWorkingSetWatch:
|
case ProcessWorkingSetWatch:
|
||||||
case ProcessWx86Information:
|
case ProcessWx86Information:
|
||||||
|
DPRINT1("Not implemented: %lx\n", ProcessInformationClass);
|
||||||
Status = STATUS_NOT_IMPLEMENTED;
|
Status = STATUS_NOT_IMPLEMENTED;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -703,6 +705,7 @@ NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
||||||
case ProcessAffinityMask:
|
case ProcessAffinityMask:
|
||||||
case ProcessForegroundInformation:
|
case ProcessForegroundInformation:
|
||||||
default:
|
default:
|
||||||
|
DPRINT1("Unsupported or unimplemented: %lx\n", ProcessInformationClass);
|
||||||
Status = STATUS_INVALID_INFO_CLASS;
|
Status = STATUS_INVALID_INFO_CLASS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue