Quote:
I'm not an expert on CPU processing but high handle usage is a (sometimes accurate?? according to exactly what system measures it) warning that a program is using a lot of CPU resources. In itself it may (probably) not mean anything untoward - in fact it may show that the program in question is performing as you want it to. Typically gaming and graphics intensive programs have high handle usage.
If you want to observe it, start up task manager, click on the view tab, open the select columns, and scroll down and check the handles box. You will then see the handle usage of each process.
For example, my system shows 964 for skype running in the background and 29,265 for PD10 open with a project (amongst the 119 other processes running) as I type this.
Cheers
Adrian
Actually, "handles" has nothing to do with CPU utilization. It has to do with accessing various system resources. It's pretty hard to explain without getting very technical very quickly, but you can think of the number of handles as the number of system thingies that a process is using. Your program says "gimme a thingie" and the system replies "here's a handle to your thingie."
The thingies might be big, small, or even completely abstract; so there's no way to relate the
number of handles to the
amount of memory, file space, etc. being used.
I don't actually know if the individual CPUs can be referenced by way of handles. It wouldn't surprise me, since I don't know how else you'd make processor affinity work. CPU utilization is unrelated in any case. I could write a very small program that would use at most three handles while simultaneously using 100% of a CPU.
As for Carl's comment, that's a pretty odd message for a program to throw at a user. It's more like something the programmers would use for debugging. Why not say "HD files are pretty big, you know - you might want to get a cup of coffee or tea"?
Whatever -- it wouldn't be the first time a program displayed a peculiar message. From debugging messages to Easter eggs, there's all kinds of stuff lurking around in released code.
This message was edited 1 time. Last update was at Jun 17. 2012 17:35
Jerry Schwartz