What is the handle count for a process in windows?
-
Hi All, Is anyone aware of the handle count for a process in windows? Please let me know if it require further clarification. Suraj
Suraj Gupta
-
Hi All, Is anyone aware of the handle count for a process in windows? Please let me know if it require further clarification. Suraj
Suraj Gupta
HandleCount
property of a process refers to the number of operating system handles opened by that process. I suggest you ask such questions pertaining to .NET stuff in the .NET Framework Forum.
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
-
HandleCount
property of a process refers to the number of operating system handles opened by that process. I suggest you ask such questions pertaining to .NET stuff in the .NET Framework Forum.
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
Is there any limit to that number...
Suraj Gupta
-
Is there any limit to that number...
Suraj Gupta
Have a look at this link[^]. And please ask .NET questions in the .NET Framework Forum[^]
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
-
HandleCount
property of a process refers to the number of operating system handles opened by that process. I suggest you ask such questions pertaining to .NET stuff in the .NET Framework Forum.
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
Why is that a .net specific question ? The original poster did not mentionned the
HandleCount
property at all in his post. :confused:
Maximilien Lincourt Your Head A Splode - Strong Bad
-
Hi All, Is anyone aware of the handle count for a process in windows? Please let me know if it require further clarification. Suraj
Suraj Gupta
Hi The Handle count for a process is the total of handles used: Thread, opened files, events. I think u know that the function to get HC is GetProcessHandleCount. U have to be carefully if your app have HC that never decreases Regards David Leyva
-
Why is that a .net specific question ? The original poster did not mentionned the
HandleCount
property at all in his post. :confused:
Maximilien Lincourt Your Head A Splode - Strong Bad
That person has edited his post! He had asked what
HandleCount
was. Hope you understand it.
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
-
Hi All, Is anyone aware of the handle count for a process in windows? Please let me know if it require further clarification. Suraj
Suraj Gupta
And also except handle count we have thread count :)
WhiteSky
-
And also except handle count we have thread count :)
WhiteSky
Thanks alot for your replies... Handle count for a process is limited to 10000 and it can be increased to 18000 (max limit). But I can see different process on my machine (like explorer.exe) having handle count greater than 18000. How that process is running properly even when handle count has increase dramactically?
Suraj Gupta