vote up 2 vote down star

I have a Windows Service in C#. I want a certain thread to perform specific actions, but only when the CPU is idle. Is there a way to do this in C#.

flag

67% accept rate

2 Answers

vote up 5 vote down check

You can let the OS handle it for you like this:

Thread thread = Thread.CurrentThread;
thread.Priority = ThreadPriority.Lowest;
link|flag
vote up 2 vote down

Try setting ThreadPriority to BelowNormal or less. See MSDN.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.