Linux Tutorial POSIX Threads

Linux Tutorial POSIX ThreadsShort 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

AddThis Social Bookmark Button
Related Books:
  • Tutorial on Threads Programming with Python
  • Linux-HA Release 2 Tutorial
  • Linux-HA Release 2 Tutorial
  • Linux Kernel for System Programming
  • LOCKG(3) Linux Programmer’s Manual LOCKG(3) NAME
  • Advanced Linux Programming
  • Linux Dictionary
  • SE Linux Tutorial for Linux Kongress

  • Related Searches: , , , ,



    Comments

    Leave a Reply