Multithreaded Programming (pthreads Tutorial)
Dives into the world of threads with a little bit of "theory" first. Examine thread synchronization primitives and how to use POSIX pthreads. Finally, it finishes off with thread performance and a brief overview of multiprocess programming. (August 20, 2002)
Native POSIX Thread Library (NPTL) 0.1 Released
Initial performance: 8x Linux Threads, 4x NGPT. [Linux Weekly News] (September 19, 2002)
An Introduction to POSIX Threads
This article demystifies the POSIX thread interface, providing practical examples of threaded code for consideration. (January 21, 2004)
POSIX Threads Tutorial
How to write parallel applications using POSIX threads. By Mark Hays.
POSIX Threads Programming
Provides an overview of threads programming and the POSIX threads API.
POSIX Threads Explained, Part 3
How to use condition variables.
POSIX Threads Explained, Part 2
How to protect the integrity of shared data structures in threaded code by using mutexes.
POSIX Threads Explained, Part 1
How to use POSIX threads to increase the responsiveness and performance of your code.
POSIX Synchronous Wrappers
A set of C++ wrappers for posix synchronous entities such as pthread, mutexes and condition.
Next Generation POSIX Threading: NGPT
Goals: solve problems of pthreads library on Linux; add M:N threading, raise POSIX compliance and speed in threaded programs, more so under SMP, give threading services more like commercial Unix. Derived from GNU Pth. [Open Source, LGPL]
[ 1 ] [ 2 ]
|