642 views
1 votes
1 votes
A multithreaded web server wishes to keep track of the number of requests it services (known as hits). Consider the two following
strategies to prevent a race condition on the variable hits. The first strategy is to use a basic mutex lock when updating hits:
$int hits;
mutex lock hit lock;
hit lock.acquire();
hits++;
hit lock.release();
A second strategy is to use an atomic integer:
atomic t hits;
atomic inc(&hits);$
Explain which of these two strategies is more efficient.

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
akash.dinkar12 asked Mar 20, 2019
2,040 views
Consider the code example for allocating and releasing processes shown below:$#define MAX PROCESSES 255int number of processes = 0;/* the implementation of fork() calls t...
0 votes
0 votes
0 answers
2