
Top : Computers : Programming : Threads :
POSIX
Websites
How to use POSIX threads to increase the responsiveness and performance of your code.
http://www-106.ibm.com/developerworks/library/posix1.html
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.
site exerpt
Introduction to Programming Threads This course will introduce 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. This course is for the intermediate to advanced programmer and assumes the...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/
Frequently asked questions about the kernel-level multi-threading library for Linux.
site exerpt
LinuxThreads Frequently Asked Questions Q has not been updated for a while and may not be 100% up to date. The glibc mailing lists often contain more up-to-date information. Also note that LinuxThreads is no longer developed and has been replaced by NPTL, the...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; cooperative scheduling: threads dispatched based on priority, pending events. [Open Source, GPL]
site exerpt
GNU Pth The GNU Portable Threads Unix platforms which provides non-preemptive priority-based scheduling for multiple threads of execution (aka multithreading inside event-driven applications. All threads run in the same address space of the server application, but each thread has it's own individual program-counter, run-time stack, signal...Initial performance: 8x Linux Threads, 4x NGPT. [Linux Weekly News]
site exerpt
LWN: Native POSIX Thread Library 0.1 released Commerce credit card processing the Open Source way! You are not logged in Log in now Create an account Subscribe to LWN Weekly Edition Return to the Development page Recent Features LWN.net Weekly Edition for December 1, 2005 The Grumpy...White paper describes actual implementation of thread library for which requirements are spelled out in a prior document. Many things are different.
site exerpt
%PDF-1.4 266 0 obj endobj xref 266 53 0000000015 00000 n 0000001272 00000 n 0000001500 00000 n 0000001838 00000 n 0000001966 00000 n 0000002044 00000 n 0000002136 00000 n 0000002228 00000 n 0000002320 00000 n 0000002451 00000 n 0000002543 00000...How to protect the integrity of shared data structures in threaded code by using mutexes.
http://www-106.ibm.com/developerworks/library/l-posix2/
The Single UNIX Specification (Version 2) standard for threads. Includes manual pages of all POSIX thread functions.
http://www.opengroup.org/onlinepubs/7908799/xsh/threads.html
The complimentary site for the book with the same title.
http://vig.prenhall.com/catalog/...roduct/1,4096,0136807291,00.html
How to use condition variables.
http://www-106.ibm.com/developerworks/library/l-posix3/
How to write parallel applications using POSIX threads. By Mark Hays.
site exerpt
POSIX Threads This is a brief tutorial on how write parallel applications using POSIX threads. Basically, this document is a short version of DEC's 300+ page manual; it is intended to provide sufficient information to enable the development of reasonably sophisticated parallel...This article demystifies the POSIX thread interface, providing practical examples of threaded code for consideration.
http://www-106.ibm.com/developerworks/library/l-pthred.html
A set of C++ wrappers for posix synchronous entities such as pthread, mutexes and condition.
http://www.partow.net/programming/posixsynchwrapper/index.html
Attempts to show how the library's features can be used in "real-life" programs. It explains the different tools defined by the library, shows how to use them, and then gives an example of using them to solve programming problems.
site exerpt
Multi-Threaded Programming With POSIX Threads This tutorial is an attempt to help you become familiar with multi-threaded programming with the POSIX threads (pthreads) library, and attempts to show how its features can be used in real-life programs. It explains the different tools defined by the...Provides an overview of threads programming and the POSIX threads API.
site exerpt
POSIX Threads Programming In shared memory multiprocessor architectures, such as SMPs, threads can be used to implement parallelism. Historically, hardware vendors have implemented their own proprietary versions of threads, making portability a concern for software developers. For UNIX systems, a standardized C language...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.
http://vergil.chemistry.gatech.e...sources/programming/threads.html