What is a multithreading programming


Discuss the below:

1. Objectives

Understand the race condition

Know the multithreading programming

Understand how to use mutex to solve the race condition

2. Run the following code and explain what the code does

Run this code at least twice and take screenshots

Explain what the code does

What is the running result supposed to be

What caused this issue?#include

#include

using namespace std;

const unsigned int NTHREADS = 20;
const int ITERS = 10000000;

int counter;

void increment()
{
for (int i = 0; i < ITERS; i++)
counter++;

}

void decrement()
{
for (int i = 0; i counter--;

}

int main()
{
cout << "The counter is " << counter << endl;

thread *threads = new thread[NTHREADS];

for (unsigned int i = 0; i if (i % 2 == 0)
threads[i] = thread(increment);
else
threads[i] = thread(decrement);

for (unsigned int i = 0; i threads[i].join();

cout << "The counter is " << counter << endl;

return 0;
}

Mutex

A mutex (mutual exlusion) allows us to encapsulate blocks of code that should only be executed in one thread at a time.

Apply mutex to solve the issue in previous code. Show your revised code and running result.

Solution Preview :

Prepared by a verified Expert
Operating System: What is a multithreading programming
Reference No:- TGS01947819

Now Priced at $40 (50% Discount)

Recommended (97%)

Rated (4.9/5)