I'm working on a project where I have to program a multithreaded library in C. I have to write functions such as thread_t_init, thread_t_shutdown, thread_t_create, thread_t_terminate, thread_t_yield. I'm looking to find a good place to start or at least some advice. Anything would help whether it's a certain website or even just a conversation.
|
|
Under Unix systems, the dominant threading API is POSIX Threads, also known as Pthreads. It is a standard set of API calls that each Unix vendor has to implement. Virtually all Unix derivates and Unix-like OSes, including Linux, Solaris, *BSD and others (since you haven't specified which one exactly) provide implementations of this API. Threaded programs written with Pthreads are fairly portable among the different Unices. Lawrence Livermore National Laboratory provide an excellent set of tutorials on different parallel programming techniques, including one on Pthreads. |
|||||
|
|
POSIX threads is what you're looking for |
|||||||
|
|
See the linux clone() system call : http://en.wikipedia.org/wiki/Clone_(Linux_system_call) Also this might help : |
||||
|
|
|
As far as i know C doesn't have a threading model included in the standard, C++ includes a threading model as standard only in the C++11 version. As consequence programming with threads is the same thing as using an external library, like with the C++ pre-C++11, you need to master the library that you decide to pick, under Unix the Look for resources about |
|||||||||||
|
