Click to See Complete Forum and Search --> : Newbie question


Rigel
October 28th, 2004, 04:15 PM
If I'm writing a simple C++ program without MFC or Win32, what type of multithreading APIs are recommeded for me to use?

Does STL support any type of multithreading APIs? (I know it probably doesn't but I'll ask anyway :D )

kuphryn
October 28th, 2004, 11:56 PM
There are several solutions. Each depends on the work done in the thread. In general, check out _beginthreadex(). Another solution is a thread pool.

Kuphryn

Rigel
October 29th, 2004, 10:16 AM
Thanks kuphryn. I'll check those out.