|
Re: Visual C++: Getting socket server to run parallel to other processes
Two separate applications? If so, let the OS handle the scheduling for you. If not, you need to use threads. You can set processor affinity so your threads run on specific processors, but it's really not necessary as again, scheduling will be handled for you.
|