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
icon
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: }
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: }
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
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
steps

Step by step

Solved in 1 steps

Blurred answer
Similar questions
  • SEE MORE 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