What is the basic difference between NPTL and POSIX threads? How have these two evolved?
feedback
|
|
POSIX threads (pthread) is not an implementation, it is a API specification (a standard, on paper, in english) of several functions whose name starts with NPTL is now inside GNU Libc on Linux and is (or at least tries very hard to be) an implementation of POSIX threads. It is a bunch of source and binary code on your Linux system.
An application compiled with | ||||
|
feedback
|
|
"POSIX threads" is a 'standard', defining an API for threading. i.e. it states that functions such as NPTL is a bunch of features that enables "Linux" (the kernel) to efficiently implement "POSIX threads" (the standard). You can read more about NPTL and how it came about here | |||||
feedback
|
|
I guess your best source of information is starting on Wikipedia and following the links from there. There is really no difference: NPTL is just the current Linux implementation of POSIX threads, you still use the pthread_* family of functions. Earlier in Linux history, a dedicated library called libpthreads was used. NPTL appeared for 2.6+ kernels circa 2003, see the link above for more details. [BTW: NPTL == Native Posix Threads Library] | |||||||||||||
feedback
|