Multithreading in Whidbey

I

Ioannis Vranos

I am finishing learning the fundamentals of Managed Extensions, however
my current book has not anything about multithreading.

I am thinking to read a chapter about that of another VC++ 2003 oriented
book.

However I would like to know, will multithreading in VC++ 2005 with the
new C++/CLI stuff, be significantly different than what is in 2003 version?

If yes, I'll wait for the next release to read about the subject, if not
I will read it now.


Thanks in advance.






Best regards,

Ioannis Vranos
 
B

Brandon Bray [MSFT]

Ioannis said:
However I would like to know, will multithreading in VC++ 2005 with the
new C++/CLI stuff, be significantly different than what is in 2003
version?

With respect to threading, there is not much difference. Learning the System
threading APIs is a good starter. Of course, there are some minor
improvements to it in Whidbey, but nothing specific to any language.

The one thing that is very much worth learning is AppDomains and their
association with threads. That too is not a C++ specific topic, but will be
invaluable knowledge if you get into more involved areas of managed code.
 
I

Ioannis Vranos

Brandon said:
With respect to threading, there is not much difference. Learning the System
threading APIs is a good starter. Of course, there are some minor
improvements to it in Whidbey, but nothing specific to any language.

The one thing that is very much worth learning is AppDomains and their
association with threads. That too is not a C++ specific topic, but will be
invaluable knowledge if you get into more involved areas of managed code.


Thank you for your reply. And for all the useful replies you have
provided me in all discussion threads.






Best regards,

Ioannis Vranos
 
J

Jochen Kalmbach

Hello Brandon,
The one thing that is very much worth learning is AppDomains and their
association with threads.

But it also very much worth learning that there is no need on association
with threads...

See: Cooperative Fiber Mode Sample - Day 1
http://blogs.msdn.com/DinoViehland/archive/2004/08/16/215140.aspx


--
Greetings
Jochen

Do you need a memory-leak finder ?
http://www.codeproject.com/tools/leakfinder.asp

Do you need daily reports from your server?
http://sourceforge.net/projects/srvreport/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top