开发者

Multicore resources in pure C

开发者 https://www.devze.com 2023-01-27 10:15 出处:网络
Would anyone know any pointers to information about multicore programming in C? I apologize if the 开发者_Python百科question has been asked before, after a \"bona fide\" search, I couldn\'t find it. I

Would anyone know any pointers to information about multicore programming in C? I apologize if the 开发者_Python百科question has been asked before, after a "bona fide" search, I couldn't find it. I'd be happy to delete if someone points me to it.


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

Multithreading support (_Thread_local storage-class specifier, header including thread creation/management functions, mutex, condition variable and thread-specific storage functionality, as well as the _Atomic type qualifier and for uninterruptible object access)


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


I'm not expecting upvotes... but I wanted to share this: Multithreaded Algorithms Chapter of the Cormen book.


i like to read http://www.drdobbs.com, http://www.drdobbs.com/go-parallel/index.jhtml is specific to parallel stuff.

Sometimes its hard to find a specific topic there but its a very good resource IMO. They also have RSS feeds for each topic.

0

精彩评论

暂无评论...
验证码 换一张
取 消