5
votes
5answers
183 views
does presence of mutex helps getting rid of volatile key word ?
Hi ,
I have a multi-R/W lock class that keeps the read, write and pending read , pending write counters. A mutex guards them from multiple threads.
My question is Do we still ne …
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
105 views
Memory barriers and large structs?
Let's say I've got a struct that consist of 100 bytes. What guarantees have I got about the following code?
m_myLargeStruct = someValue; // copying 100 bytes
Thread.MemoryBarrie …
4
votes
5answers
186 views
Does Interlocked.CompareExchange use a memory barrier?
I'm reading Joe Duffy's post about Volatile reads and writes, and timeliness, and i'm trying to understand something about the last code sample in the post:
while (Interlocked.C …
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?
5
votes
4answers
256 views
In C, how do you declare the members of a structure as volatile?
How do you declare a particular member of a struct as volatile?
2
votes
4answers
124 views
If more than one thread can access a field should it be marked as volatile?
Reading a few threads (common concurrency problems, volatile keyword, memory model) I'm confused about concurrency issues in Java.
I have a lot of fields that are accessed by more …
0
votes
1answer
61 views
Is the volatile keyword required for fields accessed via a ReentrantLock?
My question refers to whether or not the use of a ReentrantLock guarantees visibility of a field in the same respect that the synchronized keyword provides.
For example, in the f …
0
votes
5answers
367 views
how to declare volatile iterator in c++
Is there a way to declare an iterator which is a member variable in a class and that can be incremented using a member function even though the object of that class is const.
2
votes
4answers
348 views
“A reference to a volatile field will not be treated as volatile” implications
The following code
using System.Threading;
class Test
{
volatile int counter = 0;
public void Increment()
{
Interlocked.Increment(ref counter);
}
}
Raises …
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
5answers
156 views
Volatile semantic with respect to other fields
Suppose I have following code
private volatile Service service;
public void setService(Service service) {
this.service = service;
}
public void doWork() {
service.doWork();
…
3
votes
3answers
279 views
When to use ‘volatile’ or ‘Thread.MemoryBarrier()’ in threadsafe locking code? (C#)
When should I use volatile/Thread.MemoryBarrier() for thread safety?
8
votes
4answers
1k views
How to illustrate usage of volatile keyword in C#
I would like to code a little program which visually illustrates the behavior of the 'volatile' keyword. Ideally, it should be a program which performs concurrent access to a non v …
3
votes
3answers
135 views
If I lock when writing to a variable, do I also need to lock when reading, if the read is otherwise atomic?
I have a class with code as follows
private readonly object m_lock = new object();
private IClient m_client
private object m_context;
When setting the client and context, I loc …
