Review
Contents
28. Review#
28.1. Common Concurrency and Synchronization System Calls#
Function |
Reference |
Brief Description |
---|---|---|
pipe() |
Creates a pipe for bidirectional interprocess communication |
|
mmap() |
Allocates a page of virtual memory |
|
pthread_mutex_init() |
man 3 pthread_mutex_init |
Creates a mutex |
pthread_mutex_lock() |
Locks a mutex |
|
pthread_mutex_unlock() |
Unlocks a mutex |
|
pthread_mutex_destroy() |
man 3 pthread_mutex_destroy |
Frees resources allocated to a mutex |
sched_yield(), sleep() |
Call scheduler to switch threads |
|
wakeup(), wakeup_all() |
Moves threads from the wait queue to the ready queue |
|
sem_init() |
Initialize a semaphore |
|
sem_wait() |
||
sem_post() |
28.2. Review Questions#
What is the purpose of synchronization in concurrent programming?
What are the requirements for a solution to the critical section problem?
How does Peterson's Algorithm differ from other solutions for implementing critical section entry and exit protocols?
Why are atomic instructions important to locks?
What are the conditions for a deadlock?