Modify the pthread-data-sharing-mutex-os-call.cpp program to apply a Pthread mutex solution, i.e., you will use Linux system calls to control access to the critical region.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

 

  1. Modify the pthread-data-sharing-mutex-os-call.cpp program to apply a Pthread mutex solution, i.e., you will use Linux system calls to control access to the critical region.

Note: Mutex initialization can be done in two ways: 

  • Using a mutex initialization function (https://linux.die.net/man/3/pthread_mutex_init) which is more powerful if you need to set up your mutex in special ways.
  • Using the mutex initialization macro introduced in the lecture material, which initializes a mutex with default settings [sufficient for the purposes of this assignment].

 

The necessary changes will be very small, i.e., not a lot of code is needed.

  1. Build and execute the updated program several times.

    Expected Output:
    Your program should produce output similar to the following (Note: the order of threads may be different in your case and all iterations for a given thread need not be together):

 

Take a screenshot of a sample output and upload the picture as part of your assignment submission.

-----------------------

Code:

#include <iostream>
#include <pthread.h>
#include <stdlib.h>

#define TOTAL_THREADS 2

int count;
int turn; // Shared variable, indicates
// whose turn it is to execute

bool interested[TOTAL_THREADS]; // Shared variable, indicates
// processes interested in executing

// The thread_id will be either 0 or 1
void enter_region(int thread_id)
{
int other; // ID of the other thread

other = 1 - thread_id; // The oposite of thread_id


// TODO: Add the code to indicate the
// thread's interest in executing.


// TODO: Indicate the thread's turn to execute next


// TODO: Busy wait until it is the thread's turn to execute


}


void leave_region(int thread_id)
{
// TODO: Add the code to set the flag
// indicating that the thread has
// exited the critical region.


}


void* myFunction(void* arg)
{
int thread_id = *((int*) arg);

for(unsigned int i = 0; i < 10; ++i) {

// TODO:
// Make sure that the thread waits for its turn
// before it enters the critical region.
//
// HINT: You need one function call


// Beginning of the critical region

count++;
std::cout << "Thread #" << thread_id << " count = " << count << std::endl;

// End of the critical region


// TODO:
// Make sure that the other thread gets a turn
//
// HINT: You need one function call

 


// Random wait - This code is just to ensure that the threads
// show data sharing problems
int max = rand() % 1000000;

for (int x = 0; x < max; x++);

// End of random wait code
}

pthread_exit(NULL);
}


// HINT: It is not necessary to make any changes in main()
int main()
{
int rc[TOTAL_THREADS];
pthread_t ids[TOTAL_THREADS];
int args[TOTAL_THREADS];

count = 0;
for(unsigned int i = 0; i < TOTAL_THREADS; ++i) {
args[i] = i;
rc[i] = pthread_create(&ids[i], NULL, myFunction, (void*) &args[i]);
}

for(unsigned int i = 0; i < TOTAL_THREADS; ++i) {
pthread_join(ids[i], NULL);
}

std::cout << "Final count = " << count << std::endl;
pthread_exit(NULL);
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education