[ros-diffs] [dchapyshev] 41384: - Add debug messages for unimplemented cases in NtQueryInformationProcess

dchapyshev at svn.reactos.org dchapyshev at svn.reactos.org
Thu Jun 11 17:29:30 CEST 2009


Author: dchapyshev
Date: Thu Jun 11 19:29:30 2009
New Revision: 41384

URL: http://svn.reactos.org/svn/reactos?rev=41384&view=rev
Log:
- Add debug messages for unimplemented cases in NtQueryInformationProcess

Modified:
    trunk/reactos/ntoskrnl/ps/query.c

Modified: trunk/reactos/ntoskrnl/ps/query.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ps/query.c?rev=41384&r1=41383&r2=41384&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/ps/query.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ps/query.c [iso-8859-1] Thu Jun 11 19:29:30 2009
@@ -171,6 +171,7 @@
             if (!NT_SUCCESS(Status)) break;
 
             /* TODO: Implement this case */
+            DPRINT1("Query ProcessQuotaLimits unimplemented\n");
             Status = STATUS_NOT_IMPLEMENTED;
 
             /* Dereference the process */
@@ -303,6 +304,7 @@
         case ProcessLdtInformation:
         case ProcessWorkingSetWatch:
         case ProcessWx86Information:
+            DPRINT1("Not implemented: %lx\n", ProcessInformationClass);
             Status = STATUS_NOT_IMPLEMENTED;
             break;
 
@@ -703,6 +705,7 @@
         case ProcessAffinityMask:
         case ProcessForegroundInformation:
         default:
+            DPRINT1("Unsupported or unimplemented: %lx\n", ProcessInformationClass);
             Status = STATUS_INVALID_INFO_CLASS;
     }
 



More information about the Ros-diffs mailing list