Native POSIX Thread Library

From Wikipedia, the free encyclopedia

The Native POSIX Thread Library (NPTL) is an implementation of the POSIX Threads specification for the Linux operating system.

History[edit]

Before the 2.6 version of the Linux kernel, processes were the schedulable entities, and there were no special facilities for threads.[1] However, it did have a system callclone — which creates a copy of the calling process where the copy shares the address space of the caller. The LinuxThreads project used this system call to provide kernel-level threads (most of the previous thread implementations in Linux worked entirely in userland). Unfortunately, it only partially complied with POSIX, particularly in the areas of signal handling, scheduling, and inter-process synchronization primitives.

To improve upon LinuxThreads, it was clear that some kernel support and a new threading library would be required. Two competing projects were started to address the requirement: NGPT (Next Generation POSIX Threads) worked on by a team which included developers from IBM, and NPTL by developers at Red Hat. The NGPT team collaborated closely with the NPTL team and combined the best features of both implementations into NPTL. The NGPT project was subsequently abandoned in mid-2003 after merging its best features into NPTL.

NPTL was first released in Red Hat Linux 9. Old-style Linux POSIX threading is known for having trouble with threads that refuse to yield to the system occasionally, because it does not take the opportunity to preempt them when it arises, something that Windows was known to do better at the time. Red Hat claimed that NPTL fixed this problem in an article on the Java website about Java on Red Hat Linux 9.[2]

NPTL has been part of Red Hat Enterprise Linux since version 3, and in the Linux kernel since version 2.6. It is now a fully integrated part of the GNU C Library.[3]

There exists a tracing tool for NPTL, called POSIX Thread Trace Tool (PTT). And an Open POSIX Test Suite (OPTS) was written for testing the NPTL library against the POSIX standard.

Design[edit]

Like LinuxThreads, NPTL is a 1:1 threads library. Threads created by the library (via pthread_create) correspond one-to-one with schedulable entities in the kernel (processes, in the Linux case).[4]: 226  This is the simplest of the three threading models (1:1, N:1, and M:N).[4]: 215–216  New threads are created with the clone() system call called through the NPTL library. NPTL relies on kernel support for futexes to more efficiently implement user-space locks.[4]: 182 

See also[edit]

References[edit]

  1. ^ pthreads(7) — Linux manual page
  2. ^ Red Hat Linux 9 and Java 2 Platform, Standard Edition 1.4.2: A Winning Combination
  3. ^ GNU C Library version 2.3.3 release
  4. ^ a b c Robert Love (2013). Linux System Programming (2nd ed.). O'Reilly Media, Incorporated. ISBN 978-1449339531.

External links[edit]

  • NPTL Trace Tool OpenSource tool to trace and debug multithreaded applications using the NPTL.