1
vote
3answers
70 views
Safety of Interlock.Exchange and Garbage Collection
I have an object that I am accessing from two threads. One thread calls a long-running member function on the object that returns a value. The second thread updates the object us …
0
votes
3answers
42 views
Threading and un-safe variables
I have code listed here: Threading and Sockets.
The answer to that question was to modify isListening with volatile. As I remarked, that modifier allowed me to access the variable …
1
vote
5answers
378 views
Performance of Interlocked.Increment
Is Interlocked.Increment(ref x) faster or slower than x++ for ints and longs on various platforms?
2
votes
5answers
134 views
Is there any advantage of using volatile keyword in contrast to use the Interlocked class?
In other words, can I do something with a volatile variable that could not also be solved with a normal variable and the Interlocked class?
1
vote
2answers
135 views
Does Interlocked provide visibility in all threads?
Suppose I have a variable "counter", and there are several threads accessing and setting the value of "counter" by using Interlocked, i.e.:
int value = Interlocked.Increment(ref c …
0
votes
4answers
275 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 …
3
votes
2answers
63 views
Are Interlocked* functions useful on shared memory?
Two Windows processes have memory mapped the same shared file. If the file consists of counters, is it appropriate to use the Interlocked* functions (like InterlockedIncrement) to …
2
votes
8answers
621 views
Is a lock (wait) free doubly linked list possible?
Asking this question with C# tag, but if it is possible, it should be possible in any language.
Is it possible to implement a doubly linked list using Interlocked operations to p …
0
votes
1answer
46 views
Interlocked.Exchange can’t be used with generics?
I'm writing a generic class where I need to use Interlocked.
T test1, test2;
Interlocked.Exchange<T>(ref test1, test2);
This won't compile. So am I forced to use Exchange( …
17
votes
7answers
2k views
Volatile vs. Interlocked vs. lock
Let's say that a class has a public int counter field that is accessed by multiple threads. This int is only incremented or decremented.
To increment this field, which approach sh …
2
votes
2answers
125 views
Interlocked used to increment/mimick a boolean, is this safe?
Hi,
I'm just wondering whether this code that a fellow developer (who has since left) is OK, I think he wanted to avoid putting a lock. Is there a performance difference between t …
4
votes
6answers
315 views
Reading interlocked variables
Assume:
A. C++ under WIN32.
B. A properly aligned volatile integer incremented and decremented using InterlockedIncrement() and InterlockedDecrement().
__declspec (align(8)) vol …
3
votes
2answers
153 views
What’s Java’s equivalent of .Net’s Interlocked class?
How do I modify an int atomically and thread-safely in Java?
Atomically increment, test & set, etc...?
1
vote
3answers
291 views
C# Interlocked Exchange
I have a bit of my game which looks like this:
public static float Time;
float someValue = 123;
Interlocked.Exchange(ref Time, someValue);
I want to change Time to be a Uint32, …
0
votes
1answer
58 views
interlocked operation on unanligned data
Hi;
The win32 interlocked functions provide a mecanism for atomic operation on data. They are supposed to be thread-safe and multiprocessor-safe.
What happen if the data is not a …
