vote up 6 vote down star
2

Hello all,

does anyone know a good tutorial on working with (programming) threads in Visusal Studio 2005? Not MFC related, just native C++ (no .NET)

Thanks

flag

30% accept rate

4 Answers

vote up 3 vote down

Win32 Multithreaded Programming

http://www.amazon.com/Win32-Multithreaded-Programming-Aaron-Cohen/dp/1565922964

Also try some of the free undergraduate podcasts on operating systems. You can find theoretical discussions on locking, multithreading, etc. (the one I know of is from Berkeley and is based on JAva, but still relevant)

http://webcast.berkeley.edu/course_feeds.php?semesterid=18

link|flag
That book seems to be out of print. – Jonke Nov 10 '08 at 20:15
oops. I have it and like it. Sorry about the "bad" link – tim Nov 10 '08 at 20:16
Apparently one can still purchase it through amazon though. – tim Nov 10 '08 at 20:18
I love that book myself, and have used their C++ wrappers in a number of programs in the past. – crashmstr Nov 10 '08 at 20:20
Ok, I think there are some small examples in the amazon.com/Windows-Programming-Addison-Wesley-Mic… as well. Not in any c++ but just win32 api calls from C. – Jonke Nov 10 '08 at 20:23
vote up 3 vote down

Try one of these articles on codeproject.com:

http://www.codeproject.com/KB/threads/threadobject.aspx

http://www.codeproject.com/KB/winsdk/Win32_Event_Handling.aspx

link|flag
vote up 8 vote down

Instead of using Win32 threads directly, I'd consider using a thread wrapper such as Boost threads. These are cross platform so porting your application later will be easier.

link|flag
Good idea! Do you know a good tutorial about them? – jilles de wit Nov 10 '08 at 21:51
yup. ddj.com/cpp/184401518 – gbjbaanb Nov 10 '08 at 23:30
Thanks for answering that one for me gbjbaanb! – Tom Leys Nov 11 '08 at 20:46
vote up 5 vote down

You may take a look at https://computing.llnl.gov/tutorials/openMP/. This doesn't concern all concepts of multithreading in VC++, but OpenMP only, which VC++ supports. OpenMP is easy to use in some simple cases of multithreading, for instance independent iterations in loop, independent blocks of code which can be executed concurrently. Although OpenMP is not so flexible in comparison with other approaches but it is very easy to use.

To enable OpenMP you need to switch it on in the project properties "C/C++/Language/OpenMP Support"

link|flag
A big advantage of systems like OpenMp is that it is much easier to create a large number of threads to do your work, making your application scale to the multi-cores of the future. – Tom Leys Nov 11 '08 at 20:47

Your Answer

Get an OpenID
or

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