0
votes
4answers
281 views
Is the C# “lock” construct rendered obselete by Interlocked.CompareExchange<T>?
Summary:
It seems to me that:
wrapping fields representing a logical state into a single immutable consumable object
updating the object's authoritative reference with a call to …
1
vote
2answers
313 views
Good example of livelock?
I understand what livelock is but I was wondering if anyone had a good code-based example of it? And by code-based, I do NOT mean "two people trying to get past each other in a co …
