Multi-core resources in pure C

Does anyone know any pointers to information on multi-core programming in C? I apologize if the question was asked earlier, after a "bona fide" search, I could not find it. I would be happy to remove if someone calls me.

+6
c multicore
source share
4 answers

C1X is the unofficial name for the planned new standard for the C programming language.

Support for multithreading (_Thread_local specifier of the storage class, header, including stream of the create / control function, mutexes, state variable and depending on the storage flow, as well as _Atomic type classifier and for uninterrupted access to the object)

+6
source share

It is not included in the ANSI C standard, but if you are using Unix, I would strongly suggest taking a look at Posix Threads

+2
source share

I do not expect upvotes ... but I would like to share this: Multithreading Algorithms Chapter of the book Cormen.

+1
source share

I like to read http://www.drdobbs.com , http://www.drdobbs.com/go-parallel/index.jhtml refers to parallel work.

It is sometimes difficult to find a specific topic, but its a very good IMO resource. They also have RSS feeds for each topic.

+1
source share

All Articles