C++ || Snippet – Multi-Process Synchronization Producer Consumer Problem Using Threads

Print Friendly, PDF & Email

The following is sample code which demonstrates the use of POSIX threads (pthreads), aswell as pthread mutex and condition variables for use on Unix based systems.

The use of mutual exclusion (mutex) variables refers to the requirement of ensuring that no two processes or threads are in their critical section at the same time. Here, a critical section refers to the period of time in which a process accesses a shared resource, such as shared memory. This procedure highlights a classic example of a multi-process synchronization problem known as the producer–consumer problem.

The producer–consumer problem describes a scenario in which two processes (the producer and the consumer) share a common resource (i.e: a string buffer). In this scenario, the producer’s job is to generate a piece of data, update that data with the shared resource (the buffer), and repeat. At the same time, the consumer is consuming that shared resource (i.e: removing something from that same buffer) one piece at a time. The problem is to make sure that the producer wont try to manipulate that shared resource (i.e: add data into the buffer) while the consumer is accessing it; and that the consumer wont try to remove data from that shared resource (the buffer) while the producer is updating it.

In this instance, a solution for the producer can be to go to sleep if a synchronization conflict occurs, and the next time the consumer removes an item from the buffer, it can notify the producer to wake up and start to fill the buffer again. In the same way, the consumer can go to sleep when the producer is accessing it. The next time the producer puts data into the buffer, it wakes up the sleeping consumer and the process continues.

The example on this page demonstrates the use of the above solution using the “pthread_mutex_lock()” function call to limit access to the critical section, and the “pthread_cond_wait()” function call to simulate the sleeping process.


QUICK NOTES:
The highlighted lines are sections of interest to look out for.

To use pthreads, the compiler flag “-lpthread” must be set.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

The following is sample output:

The Parent is creating the producer and consumer threads..

Produced: 1
Consumed: 1

Produced: 2
Consumed: 2

Produced: 3
Consumed: 3

Produced: 4
Consumed: 4

Produced: 5
Consumed: 5

Produced: 6
Consumed: 6

Both threads have completed and have terminated!

The Parent is now exiting...

Was this article helpful?
👍 YesNo

2 Responses to C++ || Snippet – Multi-Process Synchronization Producer Consumer Problem Using Threads

  1. Avatar Jim Rogers says:

    This example’s use of a shared resource is a form of cheating based upon the classical description of the producer consumer model. In this version the only shared resource is stdout. The consumer never reads data produced by the consumer. This example performs thread synchronization without actually sharing any data.

    • admin admin says:

      Hi, thanks for visiting!

      There is a shared resource in this example. It can be found declared on line 31, the variable named ‘count’.

      The shared resource can be found being produced on line 113. Here the variable is incremented and displayed to stdout.

      The shared resource can be found being consumed on line 163. Here the variable is simply displayed to stdout.

      It’s important to note that this example is meant to demonstrate basic usage of the concept while also being as simple as possible.

      Hope this helps!

Leave a Reply