Search Results

0
votes

What is Test-and-Set used for?

It's used when you need to get a shared value, do something with it, and change the value, assuming another thread hasn't already changed it. As for practical uses, the last time I saw it w …