Page 1 of 1

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
by answerhappygod
Description This Assignment Will Be Completed In Groups Full Credit Is Awarded To Everyone In The Group Involved In The 1
Description This Assignment Will Be Completed In Groups Full Credit Is Awarded To Everyone In The Group Involved In The 1 (67.69 KiB) Viewed 25 times
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.