Description This assignment will be completed in groups. Full credit is awarded to everyone in the group involved in the
Posted: Thu Jul 14, 2022 2:28 pm
Description This assignment will be completed in groups. Full credit is awarded to everyone in the group involved in the submission. Each person should submit the assignment. Thread activity - Write a program that uses 5 threads. Initialize a shared variable with a value of 100 . - Each thread must add its Thread ID (tid) to the shared variable. - Once a thread has done the addition, print the ID of the thread. - It is important to make use of mutexes so that only one thread is incrementing the shared variable at a time. - Output the value of the shared variable once all threads have finished incrementing it. Should equal 10.