Questions tagged [system-idle-process]
4 questions
1
vote
4 answers
"System Idle Process" eats CPU on a high threading application
I have a multi-threaded web application with about 1000~2000 threads at production environment.
I expect CPU usage on w3wp.exe but System Idle Process eats CPU. Why?

Xaqron
- 29,931
- 42
- 140
- 205
0
votes
1 answer
checking the system idleness and put the system into logout state after 5 minutes( if no one using)
Is there anything that provides system idleness ? We want to use C# to get the idle time for the system across all sessions and put the machine to logout if nobody is using the machine for X minutes.
any idea about this .....

user682417
- 1,478
- 4
- 25
- 46
0
votes
3 answers
Best way to execute heavy function that could freeze the program?
I have a heavy function that uses a lot of regular expressions to match a big test into rich text box.
Every time that this text is changed ( OnTextChangedEvent ) is called this function.
This function if I write quickly paralyzes the entire program…

user3743131
- 11
- 1
0
votes
2 answers
Doing a webrequest to self, periodically, to prevent IIS from killing the app
Why isn't this working? IIS kills my app anyway after 20 mins
protected void Application_Start()
{
Task.Factory.StartNew(() => DaemonStuff());
}
private void DaemonStuff()
{
// Ping to self
MyWebRequest…

sports
- 7,851
- 14
- 72
- 129