I keep on hearing about concurrent programing every where. Can you guys throw some light on what it's and how c++ new standards facilitate doing the same?
|
|
Concurrency is about your code doing multiple things at the same time. This is typically done with explicit "threads", but there are other possibilities. For example, if you use OpenMP directives in your code then a compiler that supports OpenMP will automatically generate threads for you. Thread is short for "thread of execution". In a single-threaded C++ program, execution starts at main(), and then proceeds in a sequential fashion. In a multi-threaded program, the first thread starts at main, but additional threads may be started by the application which start at a user-specified function. These then run concurrently, or in parallel with the original thread. In C++0x threads are started using the
The new C++0x standard also supports:
I gave a more detailed overview of the new C++0x thread library in my article on devx.com: Simpler Multithreading in C++0x I write about multithreading and concurrency in C++ on my blog. I'm also writing a book on the topic: C++ Concurrency in Action. |
||||
|
|
|
When you say "how c++ new standards facilitate" concurrent programming, I assume you're talking about the soon (?) to be released C++09 standard. The new standard as it currently stands in draft form supports the following items that help with concurrent programming:
|
|||||||||||||
|
|
C++CSP2 - Easy Concurrency for C++ http://www.cs.kent.ac.uk/projects/ofa/c++csp/ CSP is a based on a proper concurrent paradigm as opposed to threads and locks and all other manner of things which are tacked on as an afterthought. (See Occam-Pi for a concurrent programming language (also based on CSP)) |
|||
|
|
|
Perhaps this video might help shine some light for you :-) |
|||
|
|
|
Concurrency is having multiple threads of execution for a given process. As of today, C++ does not directly support it. However, several libraries exist that will tie a given function to a new thread of execution. The Unix standard is the pthreads library. |
|||||
|
|
Articles:Check thses articles to know about concurrency |
||||
|
|
|
My slightly different take, specific to future directions of programming paradigms: Concurrency is about writing your program such that it can be doing multiple things at once if the hardware supports it. Currently, most languages have fairly heavy and complicated mechanisms to allow the programmer to specify this (eg: threads with manual synchronization, OpenMP pre-processor directives, etc.). As hardware improves, it's going to improve horizontally (more cores) rather than vertically (faster single core). This means apps will need to have "latent concurrency" in order to scale with "faster" hardware. Languages are currently trying to evolve to best support this, to be in the position of best language for future development. C++0x is adding more built-in support for the "old" methods of programming concurrency. Various compiler vendors are adding "new" methods which abstract the threading model and allow run-time decisions on numbers of threads, etc. (based on the hardware of the machine); for Microsoft in particular, see F#, concurrency runtime, parallel extensions, etc. Hope that helps. |
|||
|
|