The synchronization tag has no wiki summary.
1
vote
1answer
43 views
Synchronization using serialization
How can someone synchronize two or more threads using serialization? According to my professor's slides and code assignments you can use serialization to solve the synchronization problem. (He doesn't ...
3
votes
1answer
82 views
What is a linearization point?
With respect concurrent programming, what is a linearization point?
They seem to occur at a compare-and-swap instruction apparently. The best definition I could find is here.
All function calls ...
3
votes
1answer
79 views
Distributed algorithms - $\alpha, \beta$ synchronizers
I experience a difficulty in solving exercises in distributed algorithm. Below is the the exercise I try to solve, it looks like I miss basic idea.
Exercise. Consider a 15-processor asynchronous ...
6
votes
1answer
110 views
Variation of the dining philosophers: is the standard solution still valid?
I have a problem that is almost equal to the standard one of the dining philosophers, but has a quirk: while a philosopher thinks, he still holds the fork on his left.
If after the period of thinking ...