𝔖 Scriptorium
✦   LIBER   ✦

πŸ“

Programming with POSIX threads

✍ Scribed by David R. Butenhof


Publisher
Addison-Wesley
Year
1997
Tongue
English
Leaves
399
Series
Addison-Wesley professional computing series
Edition
annotated edition
Category
Library

⬇  Acquire This Volume

No coin nor oath required. For personal study only.

✦ Synopsis


This book offers an in-depth description of the IEEE operating system interface standard, POSIX (Portable Operating System Interface) threads, commonly called Pthreads. Written for experienced C programmers, but assuming no previous knowledge of threads, the book explains basic concepts such as asynchronous programming, the lifecycle of a thread, and synchronization. You then move to more advanced topics such as attributes objects, thread-specific data, and realtime scheduling. An entire chapter is devoted to Β«real code,Β» with a look at barriers, read/write locks, the work queue manager, and how to utilize existing libraries. In addition, the book tackles one of the thorniest problems faced by thread programmers-debugging-with valuable suggestions on how to avoid code errors and performance problems from the outset.


πŸ“œ SIMILAR VOLUMES


Programming with POSIX threads
✍ David R. Butenhof πŸ“‚ Library πŸ“… 1997 πŸ› Addison-Wesley 🌐 English

This book offers an in-depth description of the IEEE operating system interface standard, POSIX (Portable Operating System Interface) threads, commonly called Pthreads. Written for experienced C programmers, but assuming no previous knowledge of threads, the book explains basic concepts such as asyn

POSIX programmer's guide: writing portab
✍ Donald Lewine πŸ“‚ Library πŸ“… 1991 πŸ› O'Reilly & Associates 🌐 English

Most UNIX systems today are POSIX compliant because the federal government requires it for its purchases. Even OSF and UI agree on support for POSIX. Given the manufacturer's documentation, however, it can be difficult to distinguish system-specific features from those features defined by POSIX.

POSIX programmer's guide: writing portab
✍ Donald Lewine πŸ“‚ Library πŸ“… 1991 πŸ› O'Reilly & Associates 🌐 English

This guide, intended as an explanation of the POSIX standard and as a reference for the POSIX.1 programming library, helps you write more portable programs. Most UNIX systems today are POSIX compliant because the federal government requires it for its purchases. Even OSF and UI agree on support for

Pthreads Programming: A POSIX Standard f
✍ Bradford Nichols, Dick Buttlar, Jacqueline Proulx Farrell πŸ“‚ Library πŸ“… 1996 πŸ› O'Reilly Media 🌐 English

POSIX threads, or pthreads, allow multiple tasks to run concurrently within the same program. They can share a single CPU as processes do, or take advantage of multiple CPUs when available. In either case, they provide a clean way to divide the tasks of a program while sharing data. This book

PThreads Programming: A POSIX Standard f
✍ Dick Buttlar, Jacqueline Farrell, Bradford Nichols πŸ“‚ Library πŸ“… 1996 πŸ› O'Reilly Media 🌐 English

<div><p>Computers are just as busy as the rest of us nowadays. They have lots of tasks to do at once, and need some cleverness to get them all done at the same time.</p> <p>That's why threads are seen more and more often as a new model for programming. Threads have been available for some time. T