DOC PREVIEW
UB CSE 421 - Realizing Concurrency using Posix Threads

This preview shows page 1-2-23-24 out of 24 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 24 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 24 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 24 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 24 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 24 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Realizing Concurrency using Posix Threads (pthreads)IntroductionTopics to be CoveredObjectiveThreadsPthread LibraryCreating threadsUsing threadsThread’s local dataThread termination (destruction)Waiting for thread exitThe Thread ModelPer process vs per thread itemsMany Threads - One ProcessUser Level ThreadsKernel Level Threads“Green” ThreadsImplementing Threads in User SpaceImplementing Threads in the KernelHybrid ImplementationsScheduler ActivationsThread Scheduling (1)Thread Scheduling (2)Summary01/13/191Realizing Concurrency using Posix Threads (pthreads)B. Ramamurthy01/13/192IntroductionA thread refers to a thread of control flow: an independent sequence of execution of program code.Threads are powerful. As with most powerful tools, if they are not used appropriately thread programming may be inefficient.Thread programming has become viable solution for many problems with the advent of multiprocessors and client-server model of computing.Typically these problems are expected to handle many requests simultaneously. Example: multi-media, database applications, web applications.01/13/193Topics to be CoveredObjectiveWhat are Threads?POSIX threadsCreating threadsUsing threadsSummary01/13/194ObjectiveTo study POSIX standard for threads called Pthreads.To study thread control primitives for creation, termination, join, synchronization, concurrency, and scheduling.To learn to design multi-threaded applications.01/13/195ThreadsA thread is a unit of work to a CPU. It is strand of control flow.A traditional UNIX process has a single thread that has sole possession of the process’s memory and resources.Threads within a process are scheduled and execute independently.Many threads may share the same address space.Each thread has its own private attributes: stack, program counter and register context.01/13/196Pthread Librarya POSIX standard (IEEE 1003.1c) API for thread creation and synchronization.API specifies behavior of the thread library, implementation is up to development of the library.Common in UNIX operating systems.Simply a collection of C function.01/13/197Creating threadsAlways include pthread library: #include <pthread.h>int pthread_create (pthread_t *tp, const pthread_attr_t * attr, void *(* start_routine)(void *), void *arg);This creates a new thread of control that calls the function start_routine.It returns a zero if the creation is successful, and thread id in tp (first parameter).attr is to modify the attributes of the new thread. If it is NULL default attributes are used.The arg is passing arguments to the thread function.01/13/198Using threads1. Declare a variable of type pthread_t2. Define a function to be executed by the thread.3. Create the thread using pthread_createMake sure creation is successful by checking the return value.4. Pass any arguments need through’ arg (packing and unpacking arg list necessary.)5. #include <pthread.h> at the top of your header.6. Compile: g++ file.c -lpthread -o executable01/13/199 Thread’s local dataVariables declared within a thread (function) are called local data.Local (static) data associated with a thread are allocated on the stack. So these may be deallocated when a thread returns. So don’t plan on using locally declared variables for returning arguments. Plan to pass the arguments thru argument list passed from the caller or initiator of the thread.01/13/1910Thread termination (destruction)Implicit : Simply returning from the function executed by the thread terminates the thread. In this case thread’s completion status is set to the return value.Explicit : Use thread_exit. Prototype: void thread_exit(void *status);The single pointer value in status is available to the threads waiting for this thread.01/13/1911Waiting for thread exitint pthread_join (pthread_t tid, void * *statusp);A call to this function makes a thread wait for another thread whose thread id is specified by tid in the above prototype.When the thread specified by tid exits its completion status is stored and returned in statusp.01/13/1912The Thread Model(a) Three processes each with one thread(b) One process with three threads01/13/1913Per process vs per thread itemsItems shared by all threads in a processItems private to each threadMany Threads - One ProcessThread 1Thread 2Low MemoryHigh MemoryTimeTCB 1TCB 2Second threadstarts hereFirst threadresumesUser Level ThreadsThreads first developed in user librariesOS unawareAny blocking call blocks entire process!Kernel Level ThreadsThreads recognized as usefulFunctions added to kernelBlocking call blocks only 1 threadSimplifies programming modelThreads can use multiple CPUsRequire interrupt for service“Green” ThreadsDifferent models made programming hardUser library intercepts all blocking callsmakes them non-blockingSupports same model for user & kernel level threads01/13/1918Implementing Threads in User SpaceA user-level threads package01/13/1919Implementing Threads in the KernelA threads package managed by the kernel01/13/1920Hybrid Implementations Multiplexing user-level threads onto kernel- level threads01/13/1921Scheduler ActivationsGoal – mimic functionality of kernel threadsgain performance of user space threadsAvoids unnecessary user/kernel transitionsKernel assigns virtual processors to each processlets runtime system allocate threads to processorsProblem: Fundamental reliance on kernel (lower layer) calling procedures in user space (higher layer)01/13/1922Thread Scheduling (1)Possible scheduling of user-level threads50-msec process quantumthreads run 5 msec/CPU burst01/13/1923Thread Scheduling (2)Possible scheduling of kernel-level threads50-msec process quantumthreads run 5 msec/CPU burst01/13/1924SummaryWe looked at thread-based concurrency.Pthread programmingImplementation of threads.We will look at a pthread programming demoStudy the details given in thread library


View Full Document

UB CSE 421 - Realizing Concurrency using Posix Threads

Documents in this Course
Security

Security

28 pages

Threads

Threads

24 pages

Security

Security

20 pages

Security

Security

52 pages

Security

Security

20 pages

Load more
Download Realizing Concurrency using Posix Threads
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Realizing Concurrency using Posix Threads and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Realizing Concurrency using Posix Threads 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?