POSIX Threads Explained, Part 1
How to use POSIX threads to increase the responsiveness and performance of your code.
http://www-106.ibm.com/developerworks/library/posix1.html
Home / Programming / Threads / POSIX /
|
Getting Started With POSIX Threads
Tutorial on POSIX Threads.
http://dis.cs.umass.edu/~wagner/threads_html/tutorial.html
Home / Programming / Threads / POSIX /
|
Introduction to Programming Threads
Introduces what threads are, why they are useful and how to program with them using the POSIX 1003.1c thread standard and API bindings for C.
http://www.mit.edu/people/proven/IAP_2000/index.html
Home / Programming / Threads / POSIX /
|
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]
http://www-124.ibm.com/pthreads/
Home / Programming / Threads / POSIX /
|
LinuxThreads FAQ
Frequently asked questions about the kernel-level multi-threading library for Linux.
http://pauillac.inria.fr/~xleroy/linuxthreads/faq.html
Home / Programming / Threads / POSIX /
|
GNU Pth
Portable Threads: portable POSIX/ANSI-C library for Unix gives non-preemptive priority-based scheduling for multithreading in programs. All threads run in same address space, each has its own program counter, run time stack, signal mask, errno variable; c
http://www.gnu.org/software/pth/
Home / Programming / Threads / POSIX /
|
Native POSIX Thread Library (NPTL) 0.1 Released
Initial performance: 8x Linux Threads, 4x NGPT. [Linux Weekly News]
http://lwn.net/Articles/10465/
Home / Programming / Threads / POSIX /
|
Native POSIX Thread Library: NPTL
White paper describes actual implementation of thread library for which requirements are spelled out in a prior document. Many things are different. [Red Hat, PDF]
http://people.redhat.com/drepper/nptl-design.pdf
Home / Programming / Threads / POSIX /
|
POSIX Threads Explained, Part 2
How to protect the integrity of shared data structures in threaded code by using mutexes.
http://www-106.ibm.com/developerworks/library/l-posix2/
Home / Programming / Threads / POSIX /
|
Multithreaded Programming with Pthreads
The complimentary site for the book with the same title.
http://vig.prenhall.com/catalog/professional/product/1,4096,0136807291,00.html
Home / Programming / Threads / POSIX /
|