Consider the following multi-threaded C code. 1: /* Waits until bar ->n threads have called barrier 2: *before allowing any thread to continue 3: */ 4: void barrier (barrier_t * bar ) { 5: lock (& bar -> mutex); 6: bar -> count ++; 7: if (bar> count == bar ->n) { 8: bar -> count = 0; // reset barrier 9: cond_signal (& bar ->cv); 10: unlock (& bar -> mutex); 11: return; 12:] 13: while (bar -> count < bar ->n) { 14: cond wait (& bar ->cv, &bar -> mutex); 15: } Identify all bugs, if any exist. A. Lines 5, 10, and 16 B. Line 9 C. Lines 9 and 13 D. Line 13 E. No bugs
Consider the following multi-threaded C code. 1: /* Waits until bar ->n threads have called barrier 2: *before allowing any thread to continue 3: */ 4: void barrier (barrier_t * bar ) { 5: lock (& bar -> mutex); 6: bar -> count ++; 7: if (bar> count == bar ->n) { 8: bar -> count = 0; // reset barrier 9: cond_signal (& bar ->cv); 10: unlock (& bar -> mutex); 11: return; 12:] 13: while (bar -> count < bar ->n) { 14: cond wait (& bar ->cv, &bar -> mutex); 15: } Identify all bugs, if any exist. A. Lines 5, 10, and 16 B. Line 9 C. Lines 9 and 13 D. Line 13 E. No bugs
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
Related questions
Question
Can you help me with question 2
![Consider the following multi-threaded C code.
1: /* Waits until bar ->n threads have called barrier
2: *before allowing any thread to continue
3: */
4: void barrier (barrier_t * bar ) {
5: lock (& bar -> mutex);
6: bar -> count ++;
7: if (bar> count == bar ->n) {
8: bar -> count = 0; // reset barrier
9: cond_signal (& bar ->cv);
10: unlock (& bar -> mutex);
11: return;
12:]
13: while (bar -> count < bar ->n) {
14: cond wait (& bar ->cv, &bar -> mutex);
15: }](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F7c7a9c2d-7e21-4f8b-b1a6-1c46011f548b%2F9e92477c-5549-4d62-b40e-16ee28c1ef65%2Fhnc2vyr_processed.jpeg&w=3840&q=75)
Transcribed Image Text:Consider the following multi-threaded C code.
1: /* Waits until bar ->n threads have called barrier
2: *before allowing any thread to continue
3: */
4: void barrier (barrier_t * bar ) {
5: lock (& bar -> mutex);
6: bar -> count ++;
7: if (bar> count == bar ->n) {
8: bar -> count = 0; // reset barrier
9: cond_signal (& bar ->cv);
10: unlock (& bar -> mutex);
11: return;
12:]
13: while (bar -> count < bar ->n) {
14: cond wait (& bar ->cv, &bar -> mutex);
15: }

Transcribed Image Text:Identify all bugs, if any exist.
A. Lines 5, 10, and 16
B. Line 9
C. Lines 9 and 13
D. Line 13
E. No bugs
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 1 steps

Recommended textbooks for you

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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education