Open Source
nptl.txt
Associated article: NPTL: The New Implementation of Threads for Linux
Tags: Open Source
Published source code accompanying the article by L. Blunt Jackson in which he examines the Native POSIX Thread Library (NPTL) which was introduced with version 2.6 of the Linux kernel.
NPTL: The New Implementation of Threads for Linux by L. Blunt Jackson Listing One #include <pthread.h> #include <unistd.h> /* for getpid() */ #include <stdio.h> #include <malloc.h> void* _obtain_thread_pid(...


