Locks & Reentrant Lock

This lesson discusses the Lock and Reentrant Lock versions of the multiprocessing module.

We'll cover the following...

Locks & Reentrant Lock

Similar to the threading module, synchronization primitives exist for the multiprocessing module to coordinate among multiple processes. The primitives between the two modules have a lot of commonalities.

Because of the similarities, we just ...