From 3d5ac6b2be51f4de75d455f7d7e745095928cad7 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Sat, 5 Mar 2005 00:21:38 +0000 Subject: [PATCH] Added comments about systemHandleInfo. svn path=/trunk/; revision=13822 --- reactos/ntoskrnl/ob/handle.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reactos/ntoskrnl/ob/handle.c b/reactos/ntoskrnl/ob/handle.c index 58250750a72..dcc90efd882 100644 --- a/reactos/ntoskrnl/ob/handle.c +++ b/reactos/ntoskrnl/ob/handle.c @@ -1089,6 +1089,11 @@ ObpGetNextHandleByProcessCount(PSYSTEM_HANDLE_TABLE_ENTRY_INFO pshi, // pshi->HandleValue; +/* + This will never work with ROS! M$, I guess uses 0 -> 65535. + Ros uses 0 -> 4294967295! + */ + P = (ULONG) Process->UniqueProcessId; pshi->UniqueProcessId = (USHORT) P; -- 2.17.1