Linux Tutorial POSIX Threads
Short Description
Linux Tutorial: POSIX Threads. http://www.yolinux. com/TUTORIALS/LinuxTutorialPosixThreads.html. 2 of 18. 18/01/2007 08:50. linked list using a …
Website: www.dcs.gla.ac.uk | Filesize: 790kb
Content
Linux Tutorial: POSIX Threads http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html
1 of 18 18/01/2007 08:50
YoLinux Tutorial: POSIX thread (pthread) libraries
The POSIX thread libraries are a standards based thread API for C/C++. It allows one to spawn a new concurrent process flow. It is most effective on
multi-processor or multi-core systems where the process flow can be scheduled to run on another processor thus gaining speed through parallel or
distributed processing. Threads require less overhead than “forking” or spawning a new process because the system does not initialize a new system virtual
memory space and environment for the process. While most effective on a multiprocessor system, gains are also found on uniprocessor systems which
exploit latency in I/O and other system functions which may halt process execution. (One thread may execute while another is waiting for I/O or some other
system latency.) Parallel programming technologies such as MPI and PVM are used in a distributed computing environment while threads are limited to a
single computer system. All threads within a process share the same address space. A thread is spawned by defining a function and it’s arguments…
Get the file Download here
Related Books:Related Searches: posix threads, posix thread, thread libraries, linux tutorial, uniprocessor systems
Comments
Leave a Reply