|
|
Question : dllhost.exe and 100% CPU utilization
|
|
My website uses ASP and a VB5 DLL accessing SQL databases. I have moved to new servers and now have a problem with dllhost pegging the CPU at 100% on the webserver computer. The SQL server computer is not affected. What causes this? Is there a way to find out what code dllhost is running, ASP or my DLL?
|
Answer : dllhost.exe and 100% CPU utilization
|
|
I had this happen to me once in a DLL I wrote that was doing a couple loops. If you have any loops in your DLL make sure you put a couple DO EVENTS in your loop which will free up the CPU usage while in the loop.
|
|
|
|