C# multi CPU for ThreadPool.QueueUserWorkItem

Posted by ikurtz on Stack Overflow See other posts from Stack Overflow or by ikurtz
Published on 2010-04-06T16:17:28Z Indexed on 2010/04/06 16:23 UTC
Read the original article Hit count: 452

Filed under:
|

I have a program that uses:

ThreadPool.QueueUserWorkItem(new WaitCallback(FireAttackProc), fireResult);

On Windows7 and Vista it works fine.

When I try to run it on XP the result is a bit different from the others.

I was just wondering in order to execute QueueUserWorkItem properly do I need a dual CPU system?

The XP I tried to test on had .Net 3.5 installed.

Inputs most welcome.

© Stack Overflow or respective owner

Related posts about c#

Related posts about queueuserworkitem