4.2. Synchronization Facilities¶
See also
- Python Multi-threaded Network Server Programming
- Programming Python Network Servers
The solution to cooperating processes sharing resources without encountering the Potential Interprocess Communication Problems is to take advantage of Operating System provided synchronization facilities.

We need a mechanism to coordinate access to critical sections
In this section, we will discuss:
- Potential synchronization solutions
- How the Programmer can use synchronization facilities
Contents